pspell_new_personal

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Load a new dictionary with personal wordlist int pspell_new_personal ( string $personal, string $language [, string $spelling [, string $jargon [, string $encoding [, int $mode = 0 ]]]] ) pspell_new_personal() opens up a new dictionary with a personal wordlist. The wordlist can be modified and saved with pspell_save_wordlist(), if desired. However, the replacement pairs are not saved. In or

eio_nthreads

(PECL eio >= 0.0.1dev) Returns number of threads currently in use int eio_nthreads ( void ) Returns: eio_nthreads() returns number of threads currently in use.

PDOStatement::bindParam

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Binds a parameter to the specified variable name public bool PDOStatement::bindParam ( mixed $parameter, mixed &$variable [, int $data_type = PDO::PARAM_STR [, int $length [, mixed $driver_options ]]] ) Binds a PHP variable to a corresponding named or question mark placeholder in the SQL statement that was used to prepare the statement. Unlike PDOStatement::bindValue(),

stats_cdf_noncentral_f

(PECL stats >= 1.0.0) Calculates any one parameter of the Non-central F distribution given values for the others. float stats_cdf_noncentral_f ( float $par1, float $par2, float $par3, float $par4, int $which ) Parameters: par1 par2 par3 par4 which

odbc_field_scale

(PHP 4, PHP 5, PHP 7) Get the scale of a field int odbc_field_scale ( resource $result_id, int $field_number ) Gets the scale of the field referenced by number in the given result identifier. Parameters: result_id The result identifier. field_number The field number. Field numbering starts at 1. Returns: Return

preg_match_all

(PHP 4, PHP 5, PHP 7) Perform a global regular expression match int preg_match_all ( string $pattern, string $subject [, array &$matches [, int $flags = PREG_PATTERN_ORDER [, int $offset = 0 ]]] ) Searches subject for all matches to the regular expression given in pattern and puts them in matches in the order specified by flags. After the first match is found, the subsequent searches are continued on from end of the

CURLFile::__wakeup

(PHP 5 >= 5.5.0, PHP 7) Unserialization handler public void CURLFile::__wakeup ( void ) Returns: No value is returned. Exception: CURLFile is not serializable.

DateTimeImmutable::setDate

(PHP 5 >= 5.5.0, PHP 7) Sets the date public DateTimeImmutable DateTimeImmutable::setDate ( int $year, int $month, int $day ) Like DateTime::setDate() but works with DateTimeImmutable.

chmod

(PHP 4, PHP 5, PHP 7) Changes file mode bool chmod ( string $filename, int $mode ) Attempts to change the mode of the specified file to that given in mode. Parameters: filename Path to the file. mode Note that mode is not automatically assumed to be an octal value, so to ensure the expected operation, you need to prefix mode with a zero

PDOStatement::bindColumn

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Bind a column to a PHP variable public bool PDOStatement::bindColumn ( mixed $column, mixed &$param [, int $type [, int $maxlen [, mixed $driverdata ]]] ) PDOStatement::bindColumn() arranges to have a particular variable bound to a given column in the result-set from a query. Each call to PDOStatement::fetch() or PDOStatement::fetchAll() will update all the variables tha