1. Go to this page and download the library: Download povils/phpmnd 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/ */
povils / phpmnd example snippets
class Foo
{
public function setPassword($password)
{
// don't do this
if (mb_strlen($password) > 7) {
throw new InvalidArgumentException("password");
}
}
}
class Foo
{
const MAX_PASSWORD_LENGTH = 7; // not const SEVEN = 7 :)
public function setPassword($password)
{
if (mb_strlen($password) > self::MAX_PASSWORD_LENGTH) {
throw new InvalidArgumentException("password");
}
}
}
$is_even = $number % 2 === 0
round($number, 4);
$array = [200, 201];
$var = 10;
function foo($default = 3);
$bar = $foo * 20;
private $bar = 10;
return 5;
$var < 7;
case 3;
bash
$ composer global
$percent = $number / intval(100);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.