PHP collection tool: captures the required content based on the Start string and end string.

Source: Internet
Author: User
PHP collection tool: captures the required content data based on the Start string and end string. The pure PHP function features high performance, no regular expressions, and top-notch efficiency. It supports single truncation or array truncation, if the first group fails to intercept, execute the second set of intercept solutions, and so on... Multiple character encoding formats are supported! $ Str1234567890; var_dump (strCut

PHP collection tool: captures the required content data based on the Start string and end string. The pure PHP function features high performance, no regular expressions, and top-notch efficiency. It supports single truncation or array truncation, if the first group fails to intercept, execute the second set of intercept solutions, and so on... Multiple character encoding formats are supported! $ Str = 1234567890; var_dump (strCut

PHP collection tool: captures the required content data based on the Start string and end string. The pure PHP function features high performance, no regular expressions, and top-notch efficiency. It supports single truncation or array truncation, if the first group fails to intercept, execute the second set of intercept solutions, and so on...

Multiple character encoding formats are supported!

$ Str = '000000 ';

Var_dump (strCutByStr ($ str, '2', '9'); // output 345678
Var_dump (strCutByStr ($ str, array ('A', '4'), array ('B', '7'); // output 56, because the first group of matches are not found, the second group is executed, and so on. <无>
function strCutByStr(&$str, $findStart, $findEnd = false, $encoding = 'utf-8'){if(is_array($findStart)){if(count($findStart) === count($findEnd)){foreach($findStart as $k => $v){if(($result = strCutByStr($str, $v, $findEnd[$k], $encoding)) !== false){return $result;}}return false;}else{return false;}}if(($start = mb_strpos($str, $findStart, 0, $encoding)) === false){return false;}$start += mb_strlen($findStart, $encoding);if($findEnd === false){return mb_substr($str, $start, NULL, $encoding);}if(($length = mb_strpos($str, $findEnd, $start, $encoding)) === false){return false;}return mb_substr($str, $start, $length - $start, $encoding);}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.