PHP code example of m4y4-dev / php-property-reader
1. Go to this page and download the library: Download m4y4-dev/php-property-reader library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
m4y4-dev / php-property-reader example snippets
ropertyReader\PropertyReader;
class Greeter
{
private $greeting = 'Hi there!';
public function getGreeting()
{
return $this->greeting;
}
}
$greeter = new Greeter;
echo $greeter->getGreeting(); // Hi there!
$greeting = & PropertyReader::read($greeter, 'greeting');
$greeting = 'Nice to meet you!';
echo $greeter->getGreeting(); // Nice to meet you!
$geeting = & PropertyReader::newInstance()->read($greeter, 'greeting');