我正在将一个存储在mysql数据库中的url提取到php变量中。
$ data_want_to_manipulate = $行['数据'];
假设$data_want_to_manipulate
为viewarticle.php?id=121
。
从那个我想拿出只有121意味着我能做什么?。
答案 0 :(得分:1)
使用此
<?php $data_want_to_manipulate1=explode('=',$data_want_to_manipulate);
echo $data_want_to_manipulate1[1];?>
答案 1 :(得分:0)
像这样使用explode
函数
$str=explode('=',$data_want_to_manipulate);
echo $str[1] // 121
or
echo end($str); //121
答案 2 :(得分:0)
试试这个
<?php
$data_want_to_manipulate='viewarticle.php?id=121';
$str=explode('=',$data_want_to_manipulate);
echo $str[1] ; // 121
?>