1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
| <?php
ini_set('display_errors',1); ini_set('display_startup_errors',1); error_reporting(-1);
echo 'strlen:'.'<br>'; $a1 = 'w123t56k789'; echo $a1.'=>'.strlen($a1).'<br>========================== <br>';
echo 'mb_strlen:'.'<br>'; $a2 = '我真的不想打$符号了'; echo $a2.'=>'.mb_strlen($a2,'utf-8');
echo '<br>==========================<br>';
echo 'addslashes:'.'<br>'; echo addslashes('ww".w/\ssss');
echo '<br>==========================<br>'; echo 'bin2hex:'.'<br>'; $a3 = 'weeeeeeemmmm'; echo $a3.'=>'.bin2hex($a3);
echo '<br>==========================<br>'; echo 'chop:'.'<br>'; $chop1 = "wqeqweqw "; echo chop($chop1);
echo '<br>==========================<br>'; echo 'chr:'.'<br>'; echo chr(72).chr(72).chr(72); echo '<br>==========================<br>';
echo 'crypt:'.'<br>'; echo crypt('asae4564','wqeqws'); echo '<br>==========================<br>'; echo 'htmlentities:'.'<br>'; echo htmlentities('wq/ e\ q/ qwew'); echo '<br>==========================<br>';
echo 'implode:'.'<br>'; $impstr = NULL; $imparray = array("qweqw","wqewwq","12w"); echo implode($impstr,$imparray);
echo '<br>==========================<br>';
echo 'md5_file:'.'<br>'; $md5_file1 = '1.php'; echo md5_file($md5_file1);
echo '<br>==========================<br>';
echo 'str_replace:'.'<br>'; $str = str_replace("ll", "", "good golly miss molly!", $count); echo $count;
echo '<br>==========================<br>';
echo 'str_split:'.'<br>'; echo str_split('wqe12');
echo '<br>==========================<br>';
echo 'split:'.'<br>'; $date="rehwrhweui/15/45/878"; list($s1,$s2,$s3) = split("[/.-]",$date); echo "year:$year;month:$month;day:$day\n"; echo '<br>==========================<br>';
echo 'strcmp:'.'<br>'; $strcmp1 = 'www1'; $strcmp2 = 'www2'; echo strcmp($strcmp1,$strcmp2);
echo '<br>==========================<br>';
echo 'strcasecmp:'.'<br>'; $strcasecmp1 = 'Wwwwe'; $strcasecmp2 = 'wwwwe'; echo strcasecmp($strcasecmp1,$strcasecmp2);
echo '<br>==========================<br>';
echo 'strstr:'.'<br>'; $strstr1 = 'weqwe132456asdx'; echo strstr($strstr1,'13');
echo '<br>==========================<br>';
echo 'preg_match:'.'<br>'; echo preg_match("/php/i", "PHP is the web scripting language of choice.");
echo '<br>==========================<br>';
echo 'preg_match_all:'.'<br>'; $userinfo = "Name: <b>PHP</b> <br> Title: <b>Programming Language</b>"; preg_match_all ("/<b>(.*)<\/b>/U", $userinfo, $pat_array); print_r($pat_array[0]);
echo '<br>==========================<br>';
echo 'intval:'.'<br>'; echo intval(123.12).'<br>'; echo intval(55.01); echo '<br>==========================<br>';
echo 'floatval:'.'<br>'; echo floatval('12.1488wsss');
echo '<br>==========================<br>';
echo 'strval:'.'<br>'; echo strval(123).'<br>'; echo strval('wqeqw').'<br>';
echo '<br>==========================<br>';
echo 'settype:'.'<br>'; $int1 = '123123'; $str1 = 6666; var_dump($int1); echo '<br>'; var_dump($str1); settype($int1,"integer"); settype($str1,"string"); echo '<br>'; var_dump($int1); echo '<br>'; var_dump($str1);
echo '<br>==========================<br>';
?>
|