Results 1 to 4 of 4
Thread: ASCII ?
Hybrid View
-
15th October 2010 02:07 #1
ASCII ?
, HEX -> ASCII , , 2 hex($hex), unhex()
hex($hex) - $hex 2 , '\x', :
6D696C73656D -> \x6D\x69\x6C\x73\x65\x6D
unhex() - , ( ) , foreach .
ASCII , \x6D\x69\x6C\x73\x65\x6D...?
:
$string="\x6D\x69\x6C\x73\x65\x6D";
echo $string;
: milsem
...
?
:
function unhex()
{
if(file_exists('hex.inc'))
{
$file=fopen('hex.inc',r);
while(!feof($file))
{
$row=fgets($file,999);
$word=preg_split('@[S]@',$row);
}
fclose($file);
foreach ($word as $d)
{
echo $d;
}
}
}
unhex();
-
15th October 2010 02:32 #2
'\xXX'. , , . escape- .
EVGA X299 FTW K|i9-7960X@4.7|4x8 Patriot Viper Steel 4000|GTX 1660 Ti|970 EVO 1 TB|Seasonic Focus GX-1000|Xigmatek Elysium|
Rampage IV Extreme BE|E5-1680v2@4.7|4x4 HyperX 1866|Cougar Aqua 240|GTX 1050 Ti|970 EVO 1/4 TB|CM 850 SilentPro|HAF-X|
-
15th October 2010 02:44 #3
-
15th October 2010 02:48 #4




Reply With Quote


Lenovo ThinkPad 15 IdeaPad 15
5th May 2023, 22:16 in