PHP code example of breux / prototype

1. Go to this page and download the library: Download breux/prototype 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/ */

    

breux / prototype example snippets


Foo::prototype('saidHello', function($lastName)
{
  return "Hello $lastName";
});

$bar = new Foo;

echo $bar->saidHello('Laura');
 php
class Foo
{
	use Prototype\Prototype;
}
 php
$foo = new Foo;

$foo->saidHello = function($lastName)
{
	return "Hello $lastName";
};

echo $foo->saidHello('Julien');