dongzhizhai4070 2010-10-27 11:19 采纳率: 0%
浏览 49
已采纳

如何解析变量?

I have the following test line in my PHP which works fine as a way of posting to Twitter from within my PHP code.

$oauth->post('statuses/update', array('status' => "hello world"));

However I want to post the contents of a variable as opposed to Hello World

If I change the code as follows, then all that gets posted is $message

$oauth->post('statuses/update', array('status' => '$message'));

I also tried without the ' but then nothing got posted, ie

$oauth->post('statuses/update', array('status' => $message));

How can I correctly parse the contents of $message?

$message is created as follows

$message = "http://www.smartphonesoft.com/index.php?option=com_mtree&task=viewlink&link_id=" .$link_id . " " ."Windows Phone Software" . " " .$link_name . " " . $metadesc;

I added an echo $message which showed me what I expected, namely:

http://www.smartphonesoft.com/index.php?option=com_mtree&task=viewlink&link_id=33183073 Windows Phone Software Pocket Player Pocket Player is a rockin' way to enjoy music and video on your Windows Mobile device. Through multiple media and playlist formats, Internet connectivity, plugin extensions, and an intuitive interface, Pocket Player means less taps, more music!

Thanks,

Greg

  • 写回答

4条回答 默认 最新

  • doujiyuan0211 2010-10-27 11:29
    关注

    From the Twitter API doc for status/update:

    • status The text of your status update, up to 140 characters. URL encode as necessary.

    So I'd say you have to shorten the $message, because yours has 369 characters.

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

报告相同问题?

悬赏问题

  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图