3v4l.org

run code in 300+ PHP versions simultaneously
<?php set_time_limit(0); require_once 'Zend/Loader.php'; Zend_Loader::loadClass('Zend_Gdata_YouTube'); Zend_Loader::loadClass('Zend_Gdata_AuthSub'); Zend_Loader::loadClass('Zend_Gdata_ClientLogin'); function printVideoEntry($videoEntry) { $ver = array('title' => $videoEntry->getVideoTitle(), 'desc' => $videoEntry->getVideoDescription(), 'category' => $videoEntry->getVideoCategory(), 'tags' => implode(", ", $videoEntry->getVideoTags()), 'video' => $videoEntry->getVideoWatchPageUrl()); return $ver; } if($_SERVER['REQUEST_METHOD'] == "POST") { function kanalgetir($kanal){ $kanal = parse_url($kanal); $kanal = explode("/",$kanal['path']); return $kanal[2]; } $knl = $_POST['url']; if(parse_url($knl, PHP_URL_HOST)) { $knl = kanalgetir($knl); } else { $knl = $knl; } $kanal = $_POST['kanal']; $dir = "C:/wamp/www/tr/dl/video/"; $yt = new Zend_Gdata_YouTube(); $videoFeed = $yt->getUserUploads($knl); foreach ($videoFeed as $entry) { $ver = printVideoEntry($entry); $bolunecek = dosyaindir($ver['video']); $name = pathinfo($bolunecek, PATHINFO_BASENAME); $ext = pathinfo($bolunecek, PATHINFO_EXTENSION); ytyukle ($kanal, $dir.$name, $ext, $ver['title'], $ver['desc'], '', $ver['category']); $dosyasil = unlink($dir.$name); } echo '<div style="width:250px;center;margin: 0 auto;"> <button class="btn btn-success"> <i class="icon icon-ok-circle icon-white"></i> Video Başarıyla Yüklendi... </button> </div>'; exit; } ?> <DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>YT Up/Down Bot</title> <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.min.js"></script> <script type="text/javascript"> $(function(){ $('#bot').submit(function(event){ $('#bas').html('<div style="width:200px;text-align:center;margin: 0 auto;"><div class="progress progress-striped active"><div class="bar" style="width: 100%;"></div></div><p>Video Bilgileri Alınıyor...</p></div>'); var data = $(this).serialize(); $.post('index.php?islem=ytbot', data) .success(function(result){ $('#bas').html(result); }) .error(function(){ console.log('Error loading page'); }) return false; }); }); </script> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/bootstrap.min.css" rel="stylesheet"> <style> body { padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */ } </style> <link href="assets/css/bootstrap-responsive.min.css" rel="stylesheet"> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="../assets/js/html5shiv.js"></script> <![endif]--> <!-- Fav and touch icons --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png"> <link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png"> <link rel="shortcut icon" href="../assets/ico/favicon.png"> </head> <body> <div class="navbar navbar-inverse navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="brand" href="index.php">YT Up/Down Bot</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="dropdown"> <ul class="dropdown-menu"> </ul> </li> <li><a href="bots.php">Bot Listesi</a></li> <li><a href="botlar.php">Video Yükle</a></li> <li><a href="index.php?islem=ytbot">Youtube Kanal Çekme</a></li <li class="dropdown"> <ul class="dropdown-menu"> </ul> </li> <li><a href="index.php?islem=hesap">Hesap Ayarları</a></li> <li><a href="index.php?islem=ythesap">Youtube Hesabı Ekle</a></li> <li><a href="http://109.73.64.148/destek/">Bot İstekleri</a></li> <li><a href="cikis.php">Çıkış</a></li> </ul> </div><!--/.nav-collapse --> </div> </div> </div> <div class="container"> <form id="bot" method="post" class="well"> BİLGİ: Youtube kanal botu sadece çektiğiniz kanalın en son yüklediği 25 videoyu kanalınıza çeker! <br /> <h2>Youtube Kanal Çek</h2> <br /> <input type="text" name="url" class="span5" placeholder="Youtube Kanal Linki veya Kanal ID"/></br> <div class="control-group"> <label class="control-label" for="select01">Kanalınız</label> <div class="controls"> <select name="kanal" id="select"> <?php $select = mysql_query("SELECT * FROM ythesap WHERE hesapid = '".$_SESSION['uyeid']."'"); while($row = mysql_fetch_row($select)) { echo '<option value="'.$row[0].'">'.$row[2].'</option>'; } ?> </select> </div> </div> <button class="btn btn-primary">Yüklemeyi Başlat</button> <button class="btn" type="reset">Temizle</button> </form> <div id="bas"></div> </div> <!-- /container --> <!-- Le javascript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="assets/js/jquery.js"></script> <script src="assets/js/bootstrap-transition.js"></script> <script src="assets/js/bootstrap-alert.js"></script> <script src="assets/js/bootstrap-modal.js"></script> <script src="assets/js/bootstrap-dropdown.js"></script> <script src="assets/js/bootstrap-scrollspy.js"></script> <script src="assets/js/bootstrap-tab.js"></script> <script src="assets/js/bootstrap-tooltip.js"></script> <script src="assets/js/bootstrap-popover.js"></script> <script src="assets/js/bootstrap-button.js"></script> <script src="assets/js/bootstrap-collapse.js"></script> <script src="assets/js/bootstrap-carousel.js"></script> <script src="assets/js/bootstrap-typeahead.js"></script> </body> </html>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 17, Position 2 = 90
Branch analysis from position: 17
2 jumps found. (Code = 43) Position 1 = 26, Position 2 = 31
Branch analysis from position: 26
1 jumps found. (Code = 42) Position 1 = 32
Branch analysis from position: 32
2 jumps found. (Code = 77) Position 1 = 44, Position 2 = 87
Branch analysis from position: 44
2 jumps found. (Code = 78) Position 1 = 45, Position 2 = 87
Branch analysis from position: 45
1 jumps found. (Code = 42) Position 1 = 44
Branch analysis from position: 44
Branch analysis from position: 87
1 jumps found. (Code = 79) Position 1 = -2
Branch analysis from position: 87
Branch analysis from position: 31
2 jumps found. (Code = 77) Position 1 = 44, Position 2 = 87
Branch analysis from position: 44
Branch analysis from position: 87
Branch analysis from position: 90
1 jumps found. (Code = 42) Position 1 = 107
Branch analysis from position: 107
2 jumps found. (Code = 44) Position 1 = 112, Position 2 = 100
Branch analysis from position: 112
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 100
2 jumps found. (Code = 44) Position 1 = 112, Position 2 = 100
Branch analysis from position: 112
Branch analysis from position: 100
filename:       /in/0YcOn
function name:  (null)
number of ops:  114
compiled vars:  !0 = $knl, !1 = $kanal, !2 = $dir, !3 = $yt, !4 = $videoFeed, !5 = $entry, !6 = $ver, !7 = $bolunecek, !8 = $name, !9 = $ext, !10 = $dosyasil, !11 = $select, !12 = $row
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    5     0  E >   INIT_FCALL                                               'set_time_limit'
          1        SEND_VAL                                                 0
          2        DO_ICALL                                                 
    6     3        INCLUDE_OR_EVAL                                          'Zend%2FLoader.php', REQUIRE_ONCE
    7     4        INIT_STATIC_METHOD_CALL                                  'Zend_Loader', 'loadClass'
          5        SEND_VAL_EX                                              'Zend_Gdata_YouTube'
          6        DO_FCALL                                      0          
    8     7        INIT_STATIC_METHOD_CALL                                  'Zend_Loader', 'loadClass'
          8        SEND_VAL_EX                                              'Zend_Gdata_AuthSub'
          9        DO_FCALL                                      0          
    9    10        INIT_STATIC_METHOD_CALL                                  'Zend_Loader', 'loadClass'
         11        SEND_VAL_EX                                              'Zend_Gdata_ClientLogin'
         12        DO_FCALL                                      0          
   22    13        FETCH_R                      global              ~18     '_SERVER'
         14        FETCH_DIM_R                                      ~19     ~18, 'REQUEST_METHOD'
         15        IS_EQUAL                                                 ~19, 'POST'
         16      > JMPZ                                                     ~20, ->90
   24    17    >   DECLARE_FUNCTION                                         'kanalgetir'
   30    18        FETCH_R                      global              ~21     '_POST'
         19        FETCH_DIM_R                                      ~22     ~21, 'url'
         20        ASSIGN                                                   !0, ~22
   32    21        INIT_FCALL                                               'parse_url'
         22        SEND_VAR                                                 !0
         23        SEND_VAL                                                 1
         24        DO_ICALL                                         $24     
         25      > JMPZ                                                     $24, ->31
   34    26    >   INIT_FCALL_BY_NAME                                       'kanalgetir'
         27        SEND_VAR_EX                                              !0
         28        DO_FCALL                                      0  $25     
         29        ASSIGN                                                   !0, $25
         30      > JMP                                                      ->32
   36    31    >   ASSIGN                                                   !0, !0
   39    32    >   FETCH_R                      global              ~28     '_POST'
         33        FETCH_DIM_R                                      ~29     ~28, 'kanal'
         34        ASSIGN                                                   !1, ~29
   41    35        ASSIGN                                                   !2, 'C%3A%2Fwamp%2Fwww%2Ftr%2Fdl%2Fvideo%2F'
   43    36        NEW                                              $32     'Zend_Gdata_YouTube'
         37        DO_FCALL                                      0          
         38        ASSIGN                                                   !3, $32
   45    39        INIT_METHOD_CALL                                         !3, 'getUserUploads'
         40        SEND_VAR_EX                                              !0
         41        DO_FCALL                                      0  $35     
         42        ASSIGN                                                   !4, $35
   47    43      > FE_RESET_R                                       $37     !4, ->87
         44    > > FE_FETCH_R                                               $37, !5, ->87
   50    45    >   INIT_FCALL                                               'printvideoentry'
         46        SEND_VAR                                                 !5
         47        DO_FCALL                                      0  $38     
         48        ASSIGN                                                   !6, $38
   52    49        INIT_FCALL_BY_NAME                                       'dosyaindir'
         50        CHECK_FUNC_ARG                                           
         51        FETCH_DIM_FUNC_ARG                               $40     !6, 'video'
         52        SEND_FUNC_ARG                                            $40
         53        DO_FCALL                                      0  $41     
         54        ASSIGN                                                   !7, $41
   54    55        INIT_FCALL                                               'pathinfo'
         56        SEND_VAR                                                 !7
         57        SEND_VAL                                                 2
         58        DO_ICALL                                         $43     
         59        ASSIGN                                                   !8, $43
   55    60        INIT_FCALL                                               'pathinfo'
         61        SEND_VAR                                                 !7
         62        SEND_VAL                                                 4
         63        DO_ICALL                                         $45     
         64        ASSIGN                                                   !9, $45
   57    65        INIT_FCALL_BY_NAME                                       'ytyukle'
         66        SEND_VAR_EX                                              !1
         67        CONCAT                                           ~47     !2, !8
         68        SEND_VAL_EX                                              ~47
         69        SEND_VAR_EX                                              !9
         70        CHECK_FUNC_ARG                                           
         71        FETCH_DIM_FUNC_ARG                               $48     !6, 'title'
         72        SEND_FUNC_ARG                                            $48
         73        CHECK_FUNC_ARG                                           
         74        FETCH_DIM_FUNC_ARG                               $49     !6, 'desc'
         75        SEND_FUNC_ARG                                            $49
         76        SEND_VAL_EX                                              ''
         77        CHECK_FUNC_ARG                                           
         78        FETCH_DIM_FUNC_ARG                               $50     !6, 'category'
         79        SEND_FUNC_ARG                                            $50
         80        DO_FCALL                                      0          
   59    81        INIT_FCALL                                               'unlink'
         82        CONCAT                                           ~52     !2, !8
         83        SEND_VAL                                                 ~52
         84        DO_ICALL                                         $53     
         85        ASSIGN                                                   !10, $53
   47    86      > JMP                                                      ->44
         87    >   FE_FREE                                                  $37
   63    88        ECHO                                                     '%3Cdiv+style%3D%22width%3A250px%3Bcenter%3Bmargin%3A+0+auto%3B%22%3E%0A++++++++++%3Cbutton+class%3D%22btn+btn-success%22%3E%0A+++++++++++++%3Ci+class%3D%22icon+icon-ok-circle+icon-white%22%3E%3C%2Fi%3E%0A+++++++++++++Video+Ba%C5%9Far%C4%B1yla+Y%C3%BCklendi...%0A++++++++++%3C%2Fbutton%3E%0A++++++++%3C%2Fdiv%3E'
   69    89      > EXIT                                                     
   72    90    >   ECHO                                                     '%3CDOCTYPE+html%3E%0A%3Chtml+lang%3D%22en%22%3E%0A++%3Chead%3E%0A++++%3Cmeta+charset%3D%22utf-8%22%3E%0A++++%3Ctitle%3EYT+Up%2FDown+Bot%3C%2Ftitle%3E%0A++++%3Cscript+type%3D%22text%2Fjavascript%22+src%3D%22http%3A%2F%2Fcode.jquery.com%2Fjquery-1.10.1.min.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+type%3D%22text%2Fjavascript%22%3E%0A++++%24%28function%28%29%7B%0A++++++%24%28%27%23bot%27%29.submit%28function%28event%29%7B%0A++%0A++++++++++%24%28%27%23bas%27%29.html%28%27%3Cdiv+style%3D%22width%3A200px%3Btext-align%3Acenter%3Bmargin%3A+0+auto%3B%22%3E%3Cdiv+class%3D%22progress+progress-striped+active%22%3E%3Cdiv+class%3D%22bar%22+style%3D%22width%3A+100%25%3B%22%3E%3C%2Fdiv%3E%3C%2Fdiv%3E%3Cp%3EVideo+Bilgileri+Al%C4%B1n%C4%B1yor...%3C%2Fp%3E%3C%2Fdiv%3E%27%29%3B%0A++%0A++++++++++var+data+%3D+%24%28this%29.serialize%28%29%3B%0A++++++++++%24.post%28%27index.php%3Fislem%3Dytbot%27%2C+data%29%0A++++++++++++++.success%28function%28result%29%7B%0A++++++++++++++++++%24%28%27%23bas%27%29.html%28result%29%3B%0A++++++++++++++%7D%29%0A++++++++++++++.error%28function%28%29%7B%0A++++++++++++++++++console.log%28%27Error+loading+page%27%29%3B%0A++++++++++++++%7D%29%0A++++++++++return+false%3B%0A++++++%7D%29%3B%0A++++%7D%29%3B%0A++++%3C%2Fscript%3E%0A++++%3Cmeta+name%3D%22viewport%22+content%3D%22width%3Ddevice-width%2C+initial-scale%3D1.0%22%3E%0A++++%3Cmeta+name%3D%22description%22+content%3D%22%22%3E%0A++++%3Cmeta+name%3D%22author%22+content%3D%22%22%3E%0A%0A++++%3C%21--+Le+styles+--%3E%0A++++%3Clink+href%3D%22assets%2Fcss%2Fbootstrap.min.css%22+rel%3D%22stylesheet%22%3E%0A++++%3Cstyle%3E%0A++++++body+%7B%0A++++++++padding-top%3A+60px%3B+%2F%2A+60px+to+make+the+container+go+all+the+way+to+the+bottom+of+the+topbar+%2A%2F%0A++++++%7D%0A++++%3C%2Fstyle%3E%0A++++%3Clink+href%3D%22assets%2Fcss%2Fbootstrap-responsive.min.css%22+rel%3D%22stylesheet%22%3E%0A%0A++++%3C%21--+HTML5+shim%2C+for+IE6-8+support+of+HTML5+elements+--%3E%0A++++%3C%21--%5Bif+lt+IE+9%5D%3E%0A++++++%3Cscript+src%3D%22..%2Fassets%2Fjs%2Fhtml5shiv.js%22%3E%3C%2Fscript%3E%0A++++%3C%21%5Bendif%5D--%3E%0A%0A++++%3C%21--+Fav+and+touch+icons+--%3E%0A++++%3Clink+rel%3D%22apple-touch-icon-precomposed%22+sizes%3D%22144x144%22+href%3D%22..%2Fassets%2Fico%2Fapple-touch-icon-144-precomposed.png%22%3E%0A++++%3Clink+rel%3D%22apple-touch-icon-precomposed%22+sizes%3D%22114x114%22+href%3D%22..%2Fassets%2Fico%2Fapple-touch-icon-114-precomposed.png%22%3E%0A++++++%3Clink+rel%3D%22apple-touch-icon-precomposed%22+sizes%3D%2272x72%22+href%3D%22..%2Fassets%2Fico%2Fapple-touch-icon-72-precomposed.png%22%3E%0A++++++++++++++++++++%3Clink+rel%3D%22apple-touch-icon-precomposed%22+href%3D%22..%2Fassets%2Fico%2Fapple-touch-icon-57-precomposed.png%22%3E%0A+++++++++++++++++++++++++++++++++++%3Clink+rel%3D%22shortcut+icon%22+href%3D%22..%2Fassets%2Fico%2Ffavicon.png%22%3E%0A++%3C%2Fhead%3E%0A%0A++%3Cbody%3E%0A%0A++++%3Cdiv+class%3D%22navbar+navbar-inverse+navbar-fixed-top%22%3E%0A++++++%3Cdiv+class%3D%22navbar-inner%22%3E%0A++++++++%3Cdiv+class%3D%22container%22%3E%0A++++++++++%3Cbutton+type%3D%22button%22+class%3D%22btn+btn-navbar%22+data-toggle%3D%22collapse%22+data-target%3D%22.nav-collapse%22%3E%0A++++++++++++%3Cspan+class%3D%22icon-bar%22%3E%3C%2Fspan%3E%0A++++++++++++%3Cspan+class%3D%22icon-bar%22%3E%3C%2Fspan%3E%0A++++++++++++%3Cspan+class%3D%22icon-bar%22%3E%3C%2Fspan%3E%0A++++++++++%3C%2Fbutton%3E%0A++++++++++%3Ca+class%3D%22brand%22+href%3D%22index.php%22%3EYT+Up%2FDown+Bot%3C%2Fa%3E%0A++++++++++%3Cdiv+class%3D%22nav-collapse+collapse%22%3E%0A++++++++++++%3Cul+class%3D%22nav%22%3E%0A++++++++++++++%09%3Cli+class%3D%22dropdown%22%3E%0A%0A++++++++++++++++%3Cul+class%3D%22dropdown-menu%22%3E%0A%0A++++++++++++++++%3C%2Ful%3E%0A++++++++++++++%09%3C%2Fli%3E%0A%0A%3Cli%3E%3Ca+href%3D%22bots.php%22%3EBot+Listesi%3C%2Fa%3E%3C%2Fli%3E%0A%3Cli%3E%3Ca+href%3D%22botlar.php%22%3EVideo+Y%C3%BCkle%3C%2Fa%3E%3C%2Fli%3E%0A%3Cli%3E%3Ca+href%3D%22index.php%3Fislem%3Dytbot%22%3EYoutube+Kanal+%C3%87ekme%3C%2Fa%3E%3C%2Fli%0A%0A++++++++++++++%09%3Cli+class%3D%22dropdown%22%3E%0A++++++++++++++%09%09%3Cul+class%3D%22dropdown-menu%22%3E%0A%0A++++++++++++++%09%09%3C%2Ful%3E%0A++++++++++++++%09%3C%2Fli%3E%0A%3Cli%3E%3Ca+href%3D%22index.php%3Fislem%3Dhesap%22%3EHesap+Ayarlar%C4%B1%3C%2Fa%3E%3C%2Fli%3E%0A%3Cli%3E%3Ca+href%3D%22index.php%3Fislem%3Dythesap%22%3EYoutube+Hesab%C4%B1+Ekle%3C%2Fa%3E%3C%2Fli%3E%0A%3Cli%3E%3Ca+href%3D%22http%3A%2F%2F109.73.64.148%2Fdestek%2F%22%3EBot+%C4%B0stekleri%3C%2Fa%3E%3C%2Fli%3E%0A%3Cli%3E%3Ca+href%3D%22cikis.php%22%3E%C3%87%C4%B1k%C4%B1%C5%9F%3C%2Fa%3E%3C%2Fli%3E%0A++++++++++++%3C%2Ful%3E%0A++++++++++%3C%2Fdiv%3E%3C%21--%2F.nav-collapse+--%3E%0A++++++++%3C%2Fdiv%3E%0A++++++%3C%2Fdiv%3E%0A++++%3C%2Fdiv%3E%0A%0A++++%3Cdiv+class%3D%22container%22%3E%0A%0A++++%3Cform+id%3D%22bot%22+method%3D%22post%22+class%3D%22well%22%3E%0AB%C4%B0LG%C4%B0%3A+Youtube+kanal+botu+sadece+%C3%A7ekti%C4%9Finiz+kanal%C4%B1n+en+son+y%C3%BCkledi%C4%9Fi+25+videoyu+kanal%C4%B1n%C4%B1za+%C3%A7eker%21%0A%3Cbr+%2F%3E%0A++++++++%3Ch2%3EYoutube+Kanal+%C3%87ek%3C%2Fh2%3E%0A++++++++%3Cbr+%2F%3E%0A%0A++++++++%3Cinput+type%3D%22text%22+name%3D%22url%22+class%3D%22span5%22+placeholder%3D%22Youtube+Kanal+Linki+veya+Kanal+ID%22%2F%3E%3C%2Fbr%3E%0A++++++++++%3Cdiv+class%3D%22control-group%22%3E++%0A++++++++++++%3Clabel+class%3D%22control-label%22+for%3D%22select01%22%3EKanal%C4%B1n%C4%B1z%3C%2Flabel%3E++%0A++++++++++++%3Cdiv+class%3D%22controls%22%3E++%0A++++++++++++++%3Cselect+name%3D%22kanal%22+id%3D%22select%22%3E%0A++++++++++++++++'
  175    91        INIT_FCALL_BY_NAME                                       'mysql_query'
         92        FETCH_R                      global              ~55     '_SESSION'
         93        FETCH_DIM_R                                      ~56     ~55, 'uyeid'
         94        CONCAT                                           ~57     'SELECT+%2A+FROM+ythesap+WHERE+hesapid+%3D+%27', ~56
         95        CONCAT                                           ~58     ~57, '%27'
         96        SEND_VAL_EX                                              ~58
         97        DO_FCALL                                      0  $59     
         98        ASSIGN                                                   !11, $59
  176    99      > JMP                                                      ->107
  178   100    >   FETCH_DIM_R                                      ~61     !12, 0
        101        CONCAT                                           ~62     '%3Coption+value%3D%22', ~61
        102        CONCAT                                           ~63     ~62, '%22%3E'
        103        FETCH_DIM_R                                      ~64     !12, 2
        104        CONCAT                                           ~65     ~63, ~64
        105        CONCAT                                           ~66     ~65, '%3C%2Foption%3E'
        106        ECHO                                                     ~66
  176   107    >   INIT_FCALL_BY_NAME                                       'mysql_fetch_row'
        108        SEND_VAR_EX                                              !11
        109        DO_FCALL                                      0  $67     
        110        ASSIGN                                           ~68     !12, $67
        111      > JMPNZ                                                    ~68, ->100
  181   112    >   ECHO                                                     '++++++++++++++%3C%2Fselect%3E%0A++++++++++++%3C%2Fdiv%3E++%0A++++++++++%3C%2Fdiv%3E++%0A++++++++%3Cbutton+class%3D%22btn+btn-primary%22%3EY%C3%BCklemeyi+Ba%C5%9Flat%3C%2Fbutton%3E%0A++++++++%3Cbutton+class%3D%22btn%22+type%3D%22reset%22%3ETemizle%3C%2Fbutton%3E%0A++++%3C%2Fform%3E%0A%0A++++%3Cdiv+id%3D%22bas%22%3E%3C%2Fdiv%3E%0A%0A++++%3C%2Fdiv%3E+%3C%21--+%2Fcontainer+--%3E%0A%0A++++%3C%21--+Le+javascript%0A++++%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D+--%3E%0A++++%3C%21--+Placed+at+the+end+of+the+document+so+the+pages+load+faster+--%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fjquery.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-transition.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-alert.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-modal.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-dropdown.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-scrollspy.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-tab.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-tooltip.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-popover.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-button.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-collapse.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-carousel.js%22%3E%3C%2Fscript%3E%0A++++%3Cscript+src%3D%22assets%2Fjs%2Fbootstrap-typeahead.js%22%3E%3C%2Fscript%3E%0A%0A++%3C%2Fbody%3E%0A%3C%2Fhtml%3E'
  210   113      > RETURN                                                   1

Function printvideoentry:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/0YcOn
function name:  printVideoEntry
number of ops:  23
compiled vars:  !0 = $videoEntry, !1 = $ver
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   11     0  E >   RECV                                             !0      
   14     1        INIT_METHOD_CALL                                         !0, 'getVideoTitle'
          2        DO_FCALL                                      0  $2      
          3        INIT_ARRAY                                       ~3      $2, 'title'
   15     4        INIT_METHOD_CALL                                         !0, 'getVideoDescription'
          5        DO_FCALL                                      0  $4      
          6        ADD_ARRAY_ELEMENT                                ~3      $4, 'desc'
   16     7        INIT_METHOD_CALL                                         !0, 'getVideoCategory'
          8        DO_FCALL                                      0  $5      
          9        ADD_ARRAY_ELEMENT                                ~3      $5, 'category'
   17    10        INIT_FCALL                                               'implode'
         11        SEND_VAL                                                 '%2C+'
         12        INIT_METHOD_CALL                                         !0, 'getVideoTags'
         13        DO_FCALL                                      0  $6      
         14        SEND_VAR                                                 $6
         15        DO_ICALL                                         $7      
         16        ADD_ARRAY_ELEMENT                                ~3      $7, 'tags'
   18    17        INIT_METHOD_CALL                                         !0, 'getVideoWatchPageUrl'
         18        DO_FCALL                                      0  $8      
         19        ADD_ARRAY_ELEMENT                                ~3      $8, 'video'
   14    20        ASSIGN                                                   !1, ~3
   19    21      > RETURN                                                   !1
   20    22*     > RETURN                                                   null

End of function printvideoentry

Function %00kanalgetir%2Fin%2F0YcOn%3A24%240:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/0YcOn
function name:  kanalgetir
number of ops:  14
compiled vars:  !0 = $kanal
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   24     0  E >   RECV                                             !0      
   25     1        INIT_FCALL                                               'parse_url'
          2        SEND_VAR                                                 !0
          3        DO_ICALL                                         $1      
          4        ASSIGN                                                   !0, $1
   26     5        INIT_FCALL                                               'explode'
          6        SEND_VAL                                                 '%2F'
          7        FETCH_DIM_R                                      ~3      !0, 'path'
          8        SEND_VAL                                                 ~3
          9        DO_ICALL                                         $4      
         10        ASSIGN                                                   !0, $4
   27    11        FETCH_DIM_R                                      ~6      !0, 2
         12      > RETURN                                                   ~6
   28    13*     > RETURN                                                   null

End of function %00kanalgetir%2Fin%2F0YcOn%3A24%240

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
163.17 ms | 1419 KiB | 26 Q