Download the PHP package cnp/php-utilities without Composer

On this page you can find all versions of the php package cnp/php-utilities. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package php-utilities

PHP-Utilities

Generic PHP functions for data manipulation.

Functions

getAcfFieldsAsArray

Gets a bunch of specific ACF fields at once. Especially useful for option page settings, which only have a way to get one field at a time.

Parameters

$fields_names_arr (array|required): An array of the field names.

$option (boolean|optional): Set to true if the fields are from an options page.

Return Values

$data_arr (array): Data array keyed to the field names from the input array.

multidimensionalArrayMap

Like array_map, but for multidimensional arrays.

Parameters

$function The callback function to apply to each value of the array

$array The multi-dimensional array

Return Values

(array) The formatted array.

parseClassesAsArray

Take a string or array of classes, trim them and then return classes as an array.

Parameters

$classes (required): An flat array or comma-delimited string of classes.

Return Values

(boolean or array) If the formatted array is empty, returns false. Otherwise, returns array of classes.

printOnPresent

Like the proverbial weasel, this function pops out markup if data is present. It's a more efficient way of doing an if ( '' !== $data ) or if ( !empty( $data ) ) check: 3 lines for the price of one!

If you pass in a function name, the function will be executed. You can use anonymous functions too!

Usage

Parameters

$string_or_array (required): The variable to check for data, which can be a string or an array. Objects are not supported.

$markup_or_function (required): What to do with the data if it is present. You can supply a string of markup, or call a function for more complex scenarios.

Return Values

(boolean or string) If the data check fails, printOnPresent returns false. If the data check is successful, then printOnPresent echoes the markup or function output from the $markup_or_function variable.


All versions of php-utilities with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package cnp/php-utilities contains the following files

Loading the files please wait ....