常规参数
文章标题:
权重:
文章摘要:
? //------------------------ // PHP 内置字符串函数实现 (windlike整理) //------------------------ //字符串长度 function strlen ($str) { if ($str == '' ) return 0; $count = 0; while (1){ if ( $str[$count] != NULL){ $count++; continue; }else{ break; } }
关键字:
PHP字符串经典函数
管理密码: