PHP: How to implement a __get-like method for local function variables
- by Tom Frost
I'm no stranger to __get(), and have used it to make some very convenient libraries in the past. However, I'm faced with a new challenge (PHP 5.3, abbreviated and simplified my code for this question):
<?php
namespace test;
class View {
function __construct($filename, $varArray) {
$this->filename = $filename;
…