PHP 如何获取 "ids":["video_123456789"] 里面的数字
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 如何获取 "ids":["video_123456789"] 里面的数字相关的知识,希望对你有一定的参考价值。
参考技术A $a = scandir(这里写文件夹的地址);返回的$a为数组,求出里面的个数减去2即可。
其中有个是 . 有个是.. 所以要减去2
<?php
$dir = '/tmp';
$files1 = scandir($dir);
$files2 = scandir($dir, 1);
print_r($files1);
print_r($files2);
/* Outputs something like:
Array
(
[0] => .
[1] => ..
[2] => bar.php
[3] => foo.txt
[4] => somedir
)
Array
(
[0] => somedir
[1] => foo.txt
[2] => bar.php
[3] => ..
[4] => .
)
*/
?> 参考技术B $str = '"ids":["video_123456789"]';
$arr = json_decode($str, TRUE);
$ids = $arr['ids'][0];
echo substr($ids, 6); 参考技术C 解析json 截取字符串
以上是关于PHP 如何获取 "ids":["video_123456789"] 里面的数字的主要内容,如果未能解决你的问题,请参考以下文章