├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── composer.json ├── phunction.php └── phunction ├── Auth.php ├── CLI.php ├── DB.php ├── DB └── SQL.php ├── Date.php ├── Disk.php ├── HTML.php ├── HTML └── Form.php ├── HTTP.php ├── Is.php ├── Math.php ├── Math ├── BC.php ├── Combinatorics.php ├── Mean.php └── Round.php ├── Net.php ├── Net ├── Akismet.php ├── Amazon.php ├── Facebook.php ├── Google.php ├── PayPal.php ├── Twitter.php └── Yahoo.php ├── Text.php └── Text └── Unicode.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://paypal.me/alixaxel 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/composer.json -------------------------------------------------------------------------------- /phunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction.php -------------------------------------------------------------------------------- /phunction/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Auth.php -------------------------------------------------------------------------------- /phunction/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/CLI.php -------------------------------------------------------------------------------- /phunction/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/DB.php -------------------------------------------------------------------------------- /phunction/DB/SQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/DB/SQL.php -------------------------------------------------------------------------------- /phunction/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Date.php -------------------------------------------------------------------------------- /phunction/Disk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Disk.php -------------------------------------------------------------------------------- /phunction/HTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/HTML.php -------------------------------------------------------------------------------- /phunction/HTML/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/HTML/Form.php -------------------------------------------------------------------------------- /phunction/HTTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/HTTP.php -------------------------------------------------------------------------------- /phunction/Is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Is.php -------------------------------------------------------------------------------- /phunction/Math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Math.php -------------------------------------------------------------------------------- /phunction/Math/BC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Math/BC.php -------------------------------------------------------------------------------- /phunction/Math/Combinatorics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Math/Combinatorics.php -------------------------------------------------------------------------------- /phunction/Math/Mean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Math/Mean.php -------------------------------------------------------------------------------- /phunction/Math/Round.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Math/Round.php -------------------------------------------------------------------------------- /phunction/Net.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Net.php -------------------------------------------------------------------------------- /phunction/Net/Akismet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Net/Akismet.php -------------------------------------------------------------------------------- /phunction/Net/Amazon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Net/Amazon.php -------------------------------------------------------------------------------- /phunction/Net/Facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Net/Facebook.php -------------------------------------------------------------------------------- /phunction/Net/Google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Net/Google.php -------------------------------------------------------------------------------- /phunction/Net/PayPal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Net/PayPal.php -------------------------------------------------------------------------------- /phunction/Net/Twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Net/Twitter.php -------------------------------------------------------------------------------- /phunction/Net/Yahoo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Net/Yahoo.php -------------------------------------------------------------------------------- /phunction/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Text.php -------------------------------------------------------------------------------- /phunction/Text/Unicode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alixaxel/phunction/HEAD/phunction/Text/Unicode.php --------------------------------------------------------------------------------