1. Go to this page and download the library: Download aplia/starter-bootstrap 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/ */
aplia / starter-bootstrap example snippets
// Bootstrap the system based on our configuration
if (!file_exists(__DIR__ . '/vendor/aplia/starter-bootstrap/bootstrap.php')) {
if (PHP_SAPI != 'cli') {
echo '<html><body><p>';
}
$text =
"aplia/starter-bootstrap is not installed, cannot continue.\n" .
"Make sure the bootstrap system is installed by running:\n" .
"composer
namespace CustomProject;
class BasedModel
{
public function __properties()
{
return ['id'];
}
public function __get($name)
{
if ($name === 'id') {
return $this->fetchId();
}
}
public function fetchId()
{
// ...
}
}