This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function make_json($param) { | |
$array = array(); | |
if(sizeof($param) > 0){ | |
foreach ($param as $row) { | |
if ($row != "") { | |
array_push($array, $row); | |
} | |
} | |
} | |
return json_encode($array); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$texthtml = 'Who is Sara Bareilles on Sing Off<br> | |
<img alt="Sara" title="Sara" src="475993565.jpg"/><br> | |
<img alt="Sara" title="Sara two" src="475993434343434.jpg"/><br>'; | |
preg_match('/<img.+src=[\'"](?P<src>.+?)[\'"].*>/i', $texthtml, $image); | |
echo $image['src']; | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2147483647 |
OlderNewer