Home  >  Article  >  Backend Development  >  php截取字符串,该怎么解决

php截取字符串,该怎么解决

WBOY
WBOYOriginal
2016-06-13 13:33:01984browse

php截取字符串
/book/shopping/%E9%95%BF%E8%A3%99
php如何截取book/之后/%E9%95%BF%E8%A3%99之前的字符串

------解决方案--------------------

PHP code
$ar=preg_split('/[\/]/','/book/shopping/%E9%95%BF%E8%A3%99',-1,PREG_SPLIT_NO_EMPTY);
echo $ar[1]; <div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn