我被困在这里,我试图在我的文章中访问一个值。我在 soucerer 工作,所以我不能使用纯 php 代码。
这是我的代码:
$tot_eval = '{plotalot id="32" P3="_P3" P1 = "_P1" P2 = "_P2" P4 = "_P4" P5 = "_P5"}';
echo $tot_eval; // retunrs 366, I dont'see the brackets, but I know it is a string
var_dump($tot_eval) = string('71) "366"
我希望将其转换为整数值,但如果我这样做
$tot_eval = (int)$tot_eval; // return 0
$tot_eval = intval($tot_eval); // returns 0
$tot_eval = $tot_eval +0 ; //returns 0
我希望能够在多个变量上添加和使用运算符,这些变量与 $tot_eval 完全一样
$tot_eval = $tot_eval + $tot_eval ; // returns 682
他怎么了?