mirror of
https://github.com/thewesker/greptweet.git
synced 2025-12-20 04:01:06 -05:00
Remove new lines from tweets. Fixes #37
This commit is contained in:
@@ -5,7 +5,7 @@ $foo = json_decode($json_string);
|
|||||||
for ($i=0; $i<count($foo); $i++){
|
for ($i=0; $i<count($foo); $i++){
|
||||||
echo $foo[$i]->id_str . "|";
|
echo $foo[$i]->id_str . "|";
|
||||||
echo $foo[$i]->created_at . "|";
|
echo $foo[$i]->created_at . "|";
|
||||||
$tweet = $foo[$i]->text;
|
$tweet = str_replace("\n", " ", $foo[$i]->text);
|
||||||
if (!empty($foo[$i]->entities->urls)) {
|
if (!empty($foo[$i]->entities->urls)) {
|
||||||
foreach($foo[$i]->entities->urls as $u) {
|
foreach($foo[$i]->entities->urls as $u) {
|
||||||
//print_r($u->url);
|
//print_r($u->url);
|
||||||
|
|||||||
Reference in New Issue
Block a user