摘要: str_split — 将字符串转换为数组 语法: str_split ( string $string [, int $split_length = 1 ] ) 返回值:如果指定了可选的 split_length 参数,返回数组中的每个元素均为一个长度为 split_length 的字符块,否则每 阅读全文
posted @ 2020-08-03 15:56 这该死的代码 阅读(663) 评论(0) 推荐(0)
摘要: substr — 返回字符串的子串 语法:substr ( string $string , int $start [, int $length ] ) 返回值:返回字符串 string 由 start 和 length 参数指定的子字符串。 或者在失败时返回 FALSE 。 示例: <?php / 阅读全文
posted @ 2020-08-03 15:19 这该死的代码 阅读(2076) 评论(0) 推荐(1)
摘要: str_replace -字符串替换 返回值--该函数返回替换后的数组或者字符串。 参数:search--查找的目标值 replace--search 的替换值。 subject--执行替换的数组或者字符串 count--如果被指定,它的值将被设置为替换发生的次数。 注意:由于 str_replac 阅读全文
posted @ 2020-08-03 12:08 这该死的代码 阅读(459) 评论(1) 推荐(0)
摘要: <?php $wherelist = array(); if (!empty($_GET['status'])) { $wherelist[] = " status =".$_GET['status']; } if (!empty($_GET['message'])) { $wherelist[] 阅读全文
posted @ 2020-08-03 11:55 这该死的代码 阅读(332) 评论(0) 推荐(0)
摘要: strpos — 查找字符串首次出现的位置(区分大小写) 返回值:返回在 字符串 haystack 中 needle 首次出现的数字位置。 同时注意字符串位置起始于 0,而不是 1。 如果未发现 needle 将返回 FALSE 。 此函数可能返回布尔值 FALSE ,但也可能返回等同于 FALSE 阅读全文
posted @ 2020-08-03 10:57 这该死的代码 阅读(1994) 评论(0) 推荐(0)