doushi3189 2015-06-26 20:59
浏览 25
已采纳

PHP - 将输出的CMS内容输入到php变量中

I use Perch for CMS, and in order to output content, you put the following code in your page:

<?php perch_content('Phone Number'); ?>

However, I need to make the outputted content into a php variable, something like:

$phonenumber = perch_content('Phone Number');

I'm a complete php novice and I've tried a few things but nothing is working.

Any ideas?

  • 写回答

2条回答 默认 最新

  • dongque1462 2015-06-26 21:01
    关注
    $phonenumber = perch_content('Phone Number', true);
    

    see http://docs.grabaperch.com/docs/content/perch-content/

    It's always a good idea to look into documentations ;)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?