2017 © Pedro Peláez
 

library onepage

image

jkol/onepage

  • Saturday, March 31, 2018
  • by JKooll
  • Repository
  • 1 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

One Page, (*1)

About One Page

The is a PHP helper functions library., (*2)

Usage

dd($var)

$var = 'Hello World!';
o::dd($var); //string(12) "Hello World!"

strdiff($str1, $str2)

message($msg = '')

strtolowerplus($var)

strfilter($str)

helloWorld()

cli_read($format, $first = false)

cli_write($str)

toString($var)

swap($var1, $var2)

splitNum($num)

function_dump($funcname)

function a() {}

class b 
{
    public function f() 
    {

    }
}

o::function_dump('a');

o::function_dump(array('b', 'f'));

$b = new b();
o::function_dump(array($b, 'f'));

The Versions

31/03 2018

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

  • php >=5.6.31