ホームページ >バックエンド開発 >PHPチュートリアル >php的字串符 1/4,如何得出结果
抓取的api中有一个(string)1/4
我需要得出结果,请问我要怎么写php
抓取的api中有一个(string)1/4
我需要得出结果,请问我要怎么写php
来个暴力点的
<code class="lang-php"><?php $output = '1/4'; $output = exec('echo 1|awk \'{print '.$output.';}\''); echo $output; </code></code>
api是否有规定格式?