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 |
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
// YouTube oynatma listesi sayfasında tüm videoları listeleyen kod | |
// Kullanım: YouTube playlist sayfasında tarayıcı konsolunda çalıştırın | |
function extractPlaylistVideos() { | |
// Video elementlerini seç | |
const videoElements = document.querySelectorAll('ytd-playlist-video-renderer'); | |
if (videoElements.length === 0) { | |
console.log('Video bulunamadı. YouTube playlist sayfasında olduğunuzdan emin olun.'); | |
return; |
OlderNewer