مشكلة اختلاف الترميز في جلب البيانات من صفحات ويب خارجية
المشرف: alhitary
قوانين المنتدى
يمنع منعاً باتاً اضافه طلبات الدعم الفني او مشاكل الاستايلات او الهاكات هنا ، هناك ساحات مخصصه لكل ذلك !
يمنع منعاً باتاً اضافه طلبات الدعم الفني او مشاكل الاستايلات او الهاكات هنا ، هناك ساحات مخصصه لكل ذلك !
????? ?????? ??????? ?? ??? ???????? ?? ????? ??? ??????
????? ?????? ??????? ?? ??? ???????? ?? ????? ??? ??????
??? ??? ?????? ???? ???? ???? ????????... ???? ???? ?????? ?????? ?? ???? ????? CNN.
?????: ???: portal/block/weather.php
???????? ?????? ???? ????????? ???? ???? ??? ?? ???????.
??? ??? ?????? ???? ???? ???? ????????... ???? ???? ?????? ?????? ?? ???? ????? CNN.
?????: ???: portal/block/weather.php
كود: تحديد الكل
<?php
if (!defined('IN_PHPBB'))
{
exit;
}
//???? IF ??? ??? ????? ???????? ?? 3 ?????
if($config['portal_weather_last_update']<time()-3*3600){
//??????? ???? ???? ??? ???????? ?? ?????
$url = "http://weather.cnn.com/weather/forecast.jsp?celcius=true&locCode=OSHM&zipCode=443326227772";
$text = file_get_contents($url);
//?????? ??? ???????? ?? ??????
preg_match_all('#<div class="cnnWeatherTempCurrent">([0-9\-\+]+).</div>#', $text, $info);
$current_temp = $info[1][0];
preg_match_all('#<b>Hi ([0-9\-\+]+).</b>#', $text, $info);
$high_temp = $info[1][0];
preg_match_all('#<b>Lo ([0-9\-\+]+).</b>#', $text, $info);
$low_temp = $info[1][0];
preg_match_all('#"cnnWeatherConditionCurrent">([a-zA-Z0-9 ]+)</span>#', $text, $info);
$current_condition = trim($info[1][0]);
$current_condition = ($user->lang["PWATH_".$current_condition])?$user->lang["PWATH_".$current_condition]:$current_condition;
preg_match_all('#<b>Sunrise: </b>([0-9:]+) .<br>#', $text, $info);
$sunrise = $info[1][0];
preg_match_all('#<b>Sunset: </b>([0-9:]+) .<br>#', $text, $info);
$sunset = $info[1][0];
preg_match_all('#<b>Humidity: </b>([0-9]+)%<br>#', $text, $info);
$humidity = $info[1][0];
preg_match_all('#src="http:\/\/i\.cdn\.turner\.com\/cnn\/\.element\/img\/2\.0\/weather\/04\/([0-9]+)\.gif"#', $text, $info);
$img_src = $info[1][0];
set_config('portal_weather_last_update',time());
set_config('portal_weather_info',$current_temp."|".$high_temp."|".$low_temp."|".$current_condition."|".$sunrise."|".$sunset."|".$humidity."|".$img_src);
}else{
$info = explode("|",$config['portal_weather_info']);
$current_temp = $info[0];
$high_temp = $info[1];
$low_temp = $info[2];
$current_condition = $info[3];
$sunrise = $info[4];
$sunset = $info[5];
$humidity = $info[6];
$img_src = $info[7];
}
$template->assign_vars(array(
'PW_CURRENT_TEMP' => $current_temp,
'PW_HIGH_TEMP' => $high_temp,
'PW_LOW_TEMP' => $low_temp,
'PW_CURRENT_CONDITION' => $current_condition,
'PW_SUNRISE' => $sunrise." ".$user->lang['datetime']['am'],
'PW_SUNSET' => $sunset." ".$user->lang['datetime']['pm'],
'PW_HUMIDITY' => $humidity,
'PW_IMG_SRC' => $img_src,
));
?>
????? ?????? ??????? ?? ??? ???????? ?? ????? ??? ??????
?????
wisammo
??????? ??????? ??? ?? ???? utf8 ?? ?? ??? ????
?????? ??? utf8_ ??????? ?? ?????? .. ???? ??? ???? utf8 ?? ?????? ????? ???? !
??? ???
wisammo
??????? ??????? ??? ?? ???? utf8 ?? ?? ??? ????
?????? ??? utf8_ ??????? ?? ?????? .. ???? ??? ???? utf8 ?? ?????? ????? ???? !
??? ???
----------
[الإنسان لا يدرك قيمة الأشياء المجانيه التي تعرض له ..
ويتعامل معها بإستخفاف .. أو على الأقل يشعر أنها حق
له .. أو واجب على الطرف الآخر ...]
????? ?????? ??????? ?? ??? ???????? ?? ????? ??? ??????
???? ?? ?? saanina ??? ?????,,,
??? ??? ???? ???????? ??? ??? ?????? ??????:
???? ??? ?? ???? ??? ?? ??????? ?????? utf8_encode ???? ?? ?????? utf8_encode_ncr...
???? ???? ???????? ??? ?????? ???????? ???? ????????:
http://weather.cnn.com/weather/forecast ... 3326227772
?????? ?? ?????? ???????? ??????? ????? ?????...
????? ?????...
??? ??? ???? ?????
كود: تحديد الكل
$text = utf8_encode_ncr($text);
كود: تحديد الكل
$text = file_get_contents($url);
???? ???? ???????? ??? ?????? ???????? ???? ????????:
http://weather.cnn.com/weather/forecast ... 3326227772
?????? ?? ?????? ???????? ??????? ????? ?????...
????? ?????...
????? ?????? ??????? ?? ??? ???????? ?? ????? ??? ??????
??? ???? utf8_convert_message
??? ?? ???? ??? ???? utf8_clean_string ????? ??????? ????? ?? ????? ??????? ..
??? ?? ???? ??? ???? utf8_clean_string ????? ??????? ????? ?? ????? ??????? ..
----------
[الإنسان لا يدرك قيمة الأشياء المجانيه التي تعرض له ..
ويتعامل معها بإستخفاف .. أو على الأقل يشعر أنها حق
له .. أو واجب على الطرف الآخر ...]
????? ?????? ??????? ?? ??? ???????? ?? ????? ??? ??????
????? ?????... ??? ?? ??? ?????...
??????... ???????? utf8_convert_message ?? utf8_clean_string ?? ??? ???? ?? ????...
???? ???? ??????? ???????? ?? null...
?? ??? ??: utf8_encode_ncr ???? ??? ?????????...???? ????...
???? ??? ???? ?? ???? ????? ?? ??? preg_much_all ????????...
??????: www.sqlb.net
??????... ???????? utf8_convert_message ?? utf8_clean_string ?? ??? ???? ?? ????...
???? ???? ??????? ???????? ?? null...
?? ??? ??: utf8_encode_ncr ???? ??? ?????????...???? ????...
???? ??? ???? ?? ???? ????? ?? ??? preg_much_all ????????...
??????: www.sqlb.net
????? ?????? ??????? ?? ??? ???????? ?? ????? ??? ??????
wisammo
???? ???? ????? ??? utf8_encode ????? ?? ???? ???? ??????? ?? ??? ????????..
???? ?? ???? ??? ??????? ??? ??? ?? ????? .. ??? ????? ?? ???? ????? ??? ?????
??? ?????? ??? ???? ?? ??? ???? ?? ??? ? "???????" ?? ??? ??? ???? !
???? ???? ????? ??? utf8_encode ????? ?? ???? ???? ??????? ?? ??? ????????..
???? ?? ???? ??? ??????? ??? ??? ?? ????? .. ??? ????? ?? ???? ????? ??? ?????
??? ?????? ??? ???? ?? ??? ???? ?? ??? ? "???????" ?? ??? ??? ???? !
----------
[الإنسان لا يدرك قيمة الأشياء المجانيه التي تعرض له ..
ويتعامل معها بإستخفاف .. أو على الأقل يشعر أنها حق
له .. أو واجب على الطرف الآخر ...]
????? ?????? ??????? ?? ??? ???????? ?? ????? ??? ??????
?????? ?? ??? ??? ???? ?????? ???? ??? ??localhost...
??????? ?? ???? ??????... ????? ?? ?? ???????
??????? ?? ???? ??????... ????? ?? ?? ???????
????? ?????? ??????? ?? ??? ???????? ?? ????? ??? ??????
???
??? ?????? ?? ???? ??????? ?????? ??? ?? ?????
????????
??? ?????? ?? ???? ??????? ?????? ??? ?? ?????
????????
أسفي للجميع لتغيبي عن الدعم العربي متمني تفهمكم
النسخة المثالية phpbb4dd الآن للتحميل : http://bb4dd.com/ar/community/viewtopic.php?f=12&t=2
موقع دعم النسخة:
http://www.bb4dd.com
النسخة المثالية phpbb4dd الآن للتحميل : http://bb4dd.com/ar/community/viewtopic.php?f=12&t=2
موقع دعم النسخة:
http://www.bb4dd.com
الموجودون الآن
المتصفحون للمنتدى الآن: Majestic-12Bot فقط