Pushbullet PHP Api 列表
Pushbullet PHP Api Lists
我正在使用 Pushbullet PHP API(下面的 link)并想推送一个列表。
不幸的是,我听说推送列表(和地址)已被弃用。
https://github.com/ivkos/Pushbullet-for-PHP
现在我想将我的列表作为带有注释功能的字符串推送,在每个项目之后换行。
有人知道它是如何工作的或知道它仍在工作的图书馆(或如何使用 curl 做到这一点)?
// $items = [] <- before;
$items = "";
for ($i = 0; $i < n; $i++) {
// how i did it before
//array_push($items, 'item i');
// how can I do line break after the item, I tryed \n and %0A
$items .= 'item i';
}
// doesn't work anymore
// $pushbullet->allDevices()->pushList( 'Title', $items );
$pushbullet
->allDevices()
->pushNote('Title', $items);
如果您想使用 \n
,请使用 "
而不是 '
。更好的是使用 PHP_EOL
$items .= 'item 1' . PHP_EOL;
我正在使用 Pushbullet PHP API(下面的 link)并想推送一个列表。 不幸的是,我听说推送列表(和地址)已被弃用。
https://github.com/ivkos/Pushbullet-for-PHP
现在我想将我的列表作为带有注释功能的字符串推送,在每个项目之后换行。
有人知道它是如何工作的或知道它仍在工作的图书馆(或如何使用 curl 做到这一点)?
// $items = [] <- before;
$items = "";
for ($i = 0; $i < n; $i++) {
// how i did it before
//array_push($items, 'item i');
// how can I do line break after the item, I tryed \n and %0A
$items .= 'item i';
}
// doesn't work anymore
// $pushbullet->allDevices()->pushList( 'Title', $items );
$pushbullet
->allDevices()
->pushNote('Title', $items);
如果您想使用 \n
,请使用 "
而不是 '
。更好的是使用 PHP_EOL
$items .= 'item 1' . PHP_EOL;