PHP Classes

File: resources/views/include_test.blade.php

Recommend this page to a friend!
  Classes of Joshy Francis   Phpnopea   resources/views/include_test.blade.php   Download  
File: resources/views/include_test.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Phpnopea
Simplified MVC Web application framework
Author: By
Last change:
Date: 12 days ago
Size: 381 bytes
 

Contents

Class file image Download
<br>
Included View
<br>
<?php
   
echo 'Passed from above view : '. $some_data;
    echo
'<br>';
    echo
$test;
   
var_dump($arr);
   
    echo
"<pre></pre>";
    foreach(
debug_backtrace() as $item){
        if(isset(
$item['file'])){
            echo
"File : " . $item['file'] . ", line : " . $item['line'] . ", function : " . $item['function']."<br>";
           
//var_dump($item['args']);
       
}
    }
    echo
"</pre>";
   
?>