diff --git a/chmonly/aboutchm.xml b/chmonly/aboutchm.xml index d606e901f..c74b85c50 100644 --- a/chmonly/aboutchm.xml +++ b/chmonly/aboutchm.xml @@ -1,5 +1,5 @@ - + Informazioni su questa edizione diff --git a/language/enumerations.xml b/language/enumerations.xml new file mode 100644 index 000000000..b3a1d7c61 --- /dev/null +++ b/language/enumerations.xml @@ -0,0 +1,988 @@ + + + + Enumerazioni + + Panoramica sulle enumerazioni + + + + Le enumerazioni, o "Enum", consentono di definire un tipo personalizzato che è limitato a uno + di un numero discreto di valori possibili. Questo può essere particolarmente utile quando si + definisce un modello di dominio, poiché consente di "rendere irrapresentabili gli stati non validi." + + + + Le Enum appaiono in molti linguaggi con una varietà di funzionalità diverse. In PHP, + le Enum sono un tipo speciale di oggetto. L'Enum stessa è una classe, e i suoi possibili + casi sono tutti oggetti a istanza singola di quella classe. Ciò significa che i casi Enum sono + oggetti validi e possono essere utilizzati ovunque possa essere utilizzato un oggetto, compresi i controlli di tipo. + + + + L'esempio più noto di enumerazioni è il tipo booleano predefinito, che è un + tipo enumerato con i valori legali &true; e &false;. + Le Enum consentono di definire le proprie enumerazioni arbitrariamente robuste. + + + + Enumerazioni di base + + + Le Enum sono simili alle classi e condividono gli stessi namespace delle classi, delle interfacce e dei trait. + Sono anche autocaricabili allo stesso modo. Un'Enum definisce un nuovo tipo, che ha un numero fisso e limitato + di possibili valori legali. + + + + + +]]> + + + + Questa dichiarazione crea un nuovo tipo enumerato chiamato Suit, che ha + quattro e solo quattro valori legali: Suit::Hearts, Suit::Diamonds, + Suit::Clubs e Suit::Spades. È possibile assegnare + alle variabili uno di questi valori legali. Una funzione può essere tipizzata rispetto a un tipo enumerato, + nel qual caso solo i valori di quel tipo possono essere passati. + + + + +]]> + + + + Un'enumerazione può avere zero o più definizioni di case, senza un massimo. + Un'enumerazione con zero casi è sintatticamente valida, anche se piuttosto inutile. + + + + Per i casi di enumerazione, si applicano le stesse regole di sintassi di qualsiasi etichetta in PHP, vedere + Costanti. + + + + Per impostazione predefinita, i casi non sono intrinsecamente supportati da un valore scalare. Cioè, Suit::Hearts + non è uguale a "0". Invece, ogni caso è supportato da un oggetto singleton con quel nome. Ciò significa che: + + + + +]]> + + + + Ciò significa anche che i valori enum non sono mai < o > l'uno rispetto all'altro, + poiché quei confronti non hanno significato sugli oggetti. Questi confronti restituiranno sempre + &false; quando si lavora con i valori enum. + + + + Questo tipo di caso, senza dati correlati, è chiamato "Caso Puro." Un'Enum che contiene + solo Casi Puri è chiamata Enum Pura. + + + + Tutti i Casi Puri sono implementati come istanze del loro tipo enum. Il tipo enum è rappresentato internamente come una classe. + + + + Tutti i Casi hanno una proprietà di sola lettura, name, che è il nome + case-sensitive del caso stesso. + + + +name; +// stampa "Spades" +?> +]]> + + + + È anche possibile utilizzare le funzioni defined e constant + per verificare l'esistenza di o leggere un caso enum se il nome viene ottenuto dinamicamente. + Questo è, tuttavia, sconsigliato poiché l'utilizzo delle Enum con supporto scalare + dovrebbe funzionare per la maggior parte dei casi d'uso. + + + + + + Enumerazioni con supporto scalare + + + Per impostazione predefinita, i Casi Enumerati non hanno un equivalente scalare. Sono semplicemente oggetti singleton. Tuttavia, + ci sono numerosi casi in cui un Caso Enumerato deve poter effettuare un round-trip verso un database o + un datastore simile, quindi avere un equivalente scalare predefinito (e quindi banalmente serializzabile) definito + intrinsecamente è utile. + + + Per definire un equivalente scalare per un'Enumerazione, la sintassi è la seguente: + + + +]]> + + + + Un caso che ha un equivalente scalare è chiamato Caso con Supporto Scalare, poiché è "supportato" + da un valore più semplice. Un'Enum che contiene tutti Casi con Supporto Scalare è chiamata "Enum con Supporto Scalare." + Un'Enum con Supporto Scalare può contenere solo Casi con Supporto Scalare. Un'Enum Pura può contenere solo Casi Puri. + + + + Un'Enum con Supporto Scalare può essere supportata dai tipi int o string, + e una data enumerazione supporta solo un singolo tipo alla volta (cioè, nessuna unione di int|string). + Se un'enumerazione è contrassegnata come avente un equivalente scalare, allora tutti i casi devono avere un + equivalente scalare unico definito esplicitamente. Non esistono equivalenti scalari generati automaticamente + (ad esempio, interi sequenziali). I casi con supporto scalare devono essere unici; due casi enum con supporto scalare + non possono avere lo stesso equivalente scalare. Tuttavia, una costante può fare riferimento a un caso, creando + effettivamente un alias. Vedere Costanti di enumerazione. + + + + I valori equivalenti possono essere un'espressione scalare costante. + Prima di PHP 8.2.0, i valori equivalenti dovevano essere letterali o espressioni letterali. + Ciò significa che le costanti e le espressioni costanti non erano supportate. + Cioè, 1 + 1 era consentito, ma 1 + SOME_CONST non lo era. + + + + I Casi con Supporto Scalare hanno una proprietà aggiuntiva di sola lettura, value, che è il valore + specificato nella definizione. + + + +value; +// Stampa "C" +?> +]]> + + + + Per garantire che la proprietà value sia di sola lettura, una variabile non può + essere assegnata come riferimento ad essa. Cioè, il codice seguente genera un errore: + + + +value; +// Error: Cannot acquire reference to property Suit::$value +?> +]]> + + + + Le enum con supporto scalare implementano un'interfaccia interna BackedEnum, + che espone due metodi aggiuntivi: + + + + + from(int|string): self prende uno scalare e restituisce il + Caso Enum corrispondente. Se non ne viene trovato uno, lancerà un ValueError. Questo è + principalmente utile nei casi in cui lo scalare di input è affidabile e un valore enum mancante dovrebbe essere + considerato un errore che blocca l'applicazione. + + + tryFrom(int|string): ?self prende uno scalare e restituisce il + Caso Enum corrispondente. Se non ne viene trovato uno, restituirà null. + Questo è principalmente utile nei casi in cui lo scalare di input non è affidabile e il chiamante desidera + implementare la propria logica di gestione degli errori o di valore predefinito. + + + + + I metodi from() e tryFrom() seguono le regole standard + di tipizzazione debole/forte. In modalità di tipizzazione debole, il passaggio di un intero o di una stringa è accettabile + e il sistema convertirà il valore di conseguenza. Anche il passaggio di un float funzionerà e verrà + convertito. In modalità di tipizzazione forte, il passaggio di un intero a from() su un'enum + con supporto stringa (o viceversa) genererà un TypeError, + così come un float in tutte le circostanze. Tutti gli altri tipi di parametro genereranno un TypeError + in entrambe le modalità. + + + +value; + +$suit = Suit::tryFrom('A') ?? Suit::Spades; +// Invalid data returns null, so Suit::Spades is used instead. +print $suit->value; +?> +]]> + + + Definire manualmente un metodo from() o tryFrom() su un'Enum con Supporto Scalare genererà un errore fatale. + + + + + Metodi delle enumerazioni + + + Le Enum (sia Enum Pure che Enum con Supporto Scalare) possono contenere metodi e possono implementare interfacce. + Se un'Enum implementa un'interfaccia, allora qualsiasi controllo di tipo per quell'interfaccia accetterà anche + tutti i casi di quell'Enum. + + + + 'Red', + Suit::Clubs, Suit::Spades => 'Black', + }; + } + + // Non fa parte di un'interfaccia; va bene lo stesso. + public function shape(): string + { + return "Rectangle"; + } +} + +function paint(Colorful $c) +{ + /* ... */ +} + +paint(Suit::Clubs); // Funziona + +print Suit::Diamonds->shape(); // stampa "Rectangle" +?> +]]> + + + + In questo esempio, tutte e quattro le istanze di Suit hanno due metodi, + color() e shape(). Per quanto riguarda il codice chiamante + e i controlli di tipo, si comportano esattamente come qualsiasi altra istanza di oggetto. + + + + In un'Enum con Supporto Scalare, la dichiarazione dell'interfaccia segue la dichiarazione del tipo di supporto. + + + + 'Red', + Suit::Clubs, Suit::Spades => 'Black', + }; + } +} +?> +]]> + + + + All'interno di un metodo, la variabile $this è definita e fa riferimento all'istanza del Caso. + + + + I metodi possono essere arbitrariamente complessi, ma nella pratica restituiranno di solito un valore statico o + utilizzeranno &match; su $this per fornire + risultati diversi per casi diversi. + + + + Da notare che in questo caso sarebbe una pratica migliore di modellazione dei dati definire anche un + tipo Enum SuitColor con i valori Red e Black e restituire quello invece. + Tuttavia, ciò complicherebbe questo esempio. + + + + La gerarchia sopra riportata è logicamente simile alla seguente struttura di classi + (sebbene questo non sia il codice effettivo che viene eseguito): + + + + 'Red', + Suit::Clubs, Suit::Spades => 'Black', + }; + } + + public function shape(): string + { + return "Rectangle"; + } + + public static function cases(): array + { + // Metodo illegale, perché definire manualmente un metodo cases() su un'Enum non è consentito. + // Vedere anche la sezione "Elenco dei valori". + } +} +?> +]]> + + + + I metodi possono essere public, private o protected, sebbene nella pratica private e + protected siano equivalenti poiché l'ereditarietà non è consentita. + + + + + + Metodi statici delle enumerazioni + + + Le enumerazioni possono anche avere metodi statici. L'uso dei metodi statici + sull'enumerazione stessa è principalmente per i costruttori alternativi. Ad esempio: + + + + self::Small, + $cm < 100 => self::Medium, + default => self::Large, + }; + } +} +?> +]]> + + + + I metodi statici possono essere public, private o protected, sebbene nella pratica private + e protected siano equivalenti poiché l'ereditarietà non è consentita. + + + + + + Costanti delle enumerazioni + + + Le enumerazioni possono includere costanti, che possono essere public, private o protected, + sebbene nella pratica private e protected siano equivalenti poiché l'ereditarietà non è consentita. + + + Una costante di enum può fare riferimento a un caso enum: + + + +]]> + + + + + Trait + + Le enumerazioni possono utilizzare i trait, che si comporteranno come nelle classi. + L'avvertenza è che i trait utilizzati (use) in un'enum non devono contenere proprietà. + Possono includere solo metodi, metodi statici e costanti. Un trait con proprietà + genererà un errore fatale. + + + + 'Red', + Suit::Clubs, Suit::Spades => 'Black', + }; + } +} +?> +]]> + + + + + Valori enum nelle espressioni costanti + + + Poiché i casi sono rappresentati come costanti sull'enum stessa, possono essere utilizzati come valori statici + nella maggior parte delle espressioni costanti: valori predefiniti delle proprietà, valori predefiniti delle variabili statiche, + valori predefiniti dei parametri, valori delle costanti globali e di classe. Non possono essere utilizzati in altri valori + di casi enum, ma le costanti normali possono fare riferimento a un caso enum. + + + + Tuttavia, le chiamate implicite ai metodi magici come ArrayAccess sulle enum non sono consentite + nelle definizioni statiche o costanti poiché non è possibile garantire in modo assoluto che il valore risultante sia deterministico + o che l'invocazione del metodo sia priva di effetti collaterali. Le chiamate di funzione, le chiamate di metodo e + l'accesso alle proprietà continuano a essere operazioni non valide nelle espressioni costanti. + + + + +]]> + + + + + Differenze rispetto agli oggetti + + + Sebbene le Enum siano costruite su classi e oggetti, non supportano tutte le funzionalità relative agli oggetti. + In particolare, ai casi Enum è vietato avere uno stato. + + + + Costruttori e Distruttori sono vietati. + L'ereditarietà non è supportata. Le Enum non possono estendere né essere estese. + Le proprietà statiche o di oggetto non sono consentite. + La clonazione di un caso Enum non è supportata, poiché i casi devono essere istanze singleton. + I metodi magici, ad eccezione di quelli elencati di seguito, non sono consentiti. + Le Enum devono sempre essere dichiarate prima di essere utilizzate. + + + Le seguenti funzionalità degli oggetti sono disponibili e si comportano come su qualsiasi altro oggetto: + + + Metodi public, private e protected. + Metodi statici public, private e protected. + Costanti public, private e protected. + Le Enum possono implementare un numero qualsiasi di interfacce. + + Le Enum e i casi possono avere degli attributi allegati. + Il filtro di destinazione TARGET_CLASS + include le Enum stesse. Il filtro di destinazione TARGET_CLASS_CONST + include i Casi Enum. + + + I metodi magici __call, __callStatic, + e __invoke + + Le costanti __CLASS__ e __FUNCTION__ si comportano normalmente + + + + La costante magica ::class su un tipo Enum viene valutata come il nome del tipo + incluso qualsiasi namespace, esattamente come per un oggetto. La costante magica ::class + su un'istanza di Caso viene anch'essa valutata come il tipo Enum, poiché è un'istanza + di quel tipo. + + + + Inoltre, i casi enum non possono essere istanziati direttamente con new, né con + ReflectionClass::newInstanceWithoutConstructor nella riflessione. Entrambi genereranno un errore. + + + +newInstanceWithoutConstructor() +// Error: Cannot instantiate enum Suit +?> +]]> + + + + + Elenco dei valori + + + Sia le Enum Pure che le Enum con Supporto Scalare implementano un'interfaccia interna chiamata + UnitEnum. UnitEnum include un metodo statico + cases(). cases() restituisce un array compatto di + tutti i Casi definiti nell'ordine di dichiarazione. + + + + +]]> + + + Definire manualmente un metodo cases() su un'Enum genererà un errore fatale. + + + + Serializzazione + + + Le enumerazioni sono serializzate in modo diverso dagli oggetti. Nello specifico, hanno un nuovo codice di serializzazione, + "E", che specifica il nome del caso enum. La routine di deserializzazione è quindi + in grado di utilizzarlo per impostare una variabile sul valore singleton esistente. Ciò garantisce che: + + + + +]]> + + + + Durante la deserializzazione, se non è possibile trovare un'enum e un caso corrispondenti a un valore serializzato, + verrà emesso un avviso e verrà restituito &false;. + + + Se un'Enum Pura viene serializzata in JSON, verrà generato un errore. Se un'Enum con Supporto Scalare + viene serializzata in JSON, verrà rappresentata solo dal suo valore scalare, nel + tipo appropriato. Il comportamento di entrambe può essere sovrascritto implementando + JsonSerializable. + + + Per print_r, l'output di un caso enum è leggermente diverso + dagli oggetti per minimizzare la confusione. + + + + Bar +) +Baz Enum:int { + [name] => Beep + [value] => 5 +} +*/ +?> +]]> + + + + + + Perché le enum non sono estendibili + + + Le classi hanno contratti sui loro metodi: + + + + +]]> + + + + Questo codice è type-safe, poiché B segue il contratto di A, e attraverso la magia della + co/controvarianza, qualsiasi aspettativa sui metodi sarà + preservata, salvo eccezioni. + + + + Le Enum hanno contratti sui loro casi, non sui metodi: + + + + true, + }; +} + +?> +]]> + + + + L'istruzione &match; nella funzione quux può essere analizzata staticamente per coprire + tutti i casi di ErrorCode. + + + + Ma immaginiamo che fosse consentito estendere le enum: + + + + + +]]> + + + + Secondo le normali regole di ereditarietà, una classe che ne estende un'altra supererà + il controllo di tipo. + + + + Il problema sarebbe che l'istruzione &match; in quux() non coprirebbe più tutti + i casi. Poiché non conosce MoreErrorCode::PEBKAC, il match genererebbe un'eccezione. + + + + Per questo motivo le enum sono final e non possono essere estese. + + + + + &reftitle.examples; + + + + Valori limitati di base + + +]]> + + + La funzione query() può ora procedere con la certezza che + $order è garantito essere SortOrder::Asc + o SortOrder::Desc. Qualsiasi altro valore avrebbe generato un + TypeError, quindi non sono necessari ulteriori controlli o test degli errori. + + + + + + + + Valori esclusivi avanzati + + + 'Pending', + self::Active => 'Active', + self::Suspended => 'Suspended', + self::CanceledByUser => 'Canceled by user', + }; + } +} +?> +]]> + + + + In questo esempio, lo stato di un utente può essere uno, ed esclusivamente, tra UserStatus::Pending, + UserStatus::Active, UserStatus::Suspended o + UserStatus::CanceledByUser. Una funzione può tipizzare un parametro con + UserStatus e accettare quindi solo quei quattro valori, punto. + + + + Tutti e quattro i valori hanno un metodo label(), che restituisce una stringa leggibile. + Questa stringa è indipendente dalla stringa equivalente scalare del "nome macchina", che può essere utilizzata in, + ad esempio, un campo di database o un select box HTML. + + + +%s\n', $case->value, $case->label()); +} +?> +]]> + + + + + + + + + \ No newline at end of file diff --git a/language/exceptions.xml b/language/exceptions.xml new file mode 100644 index 000000000..9f531c04f --- /dev/null +++ b/language/exceptions.xml @@ -0,0 +1,610 @@ + + + + Eccezioni + + PHP dispone di un modello di eccezioni simile a quello di altri linguaggi + di programmazione. Un'eccezione può essere lanciata (&throw;) e catturata + ("&catch;") in PHP. Il codice può essere racchiuso in un blocco &try;, + per facilitare la cattura delle potenziali eccezioni. Ogni &try; deve + avere almeno un blocco &catch; o &finally; corrispondente. + + + Se un'eccezione viene lanciata e l'ambito della funzione corrente non ha + un blocco &catch;, l'eccezione "risalirà" lo stack delle chiamate fino + alla funzione chiamante fino a trovare un blocco &catch; corrispondente. + Tutti i blocchi &finally; incontrati lungo il percorso verranno eseguiti. + Se lo stack delle chiamate viene srotolato fino all'ambito globale senza + incontrare un blocco &catch; corrispondente, il programma terminerà con + un errore fatale a meno che non sia stato impostato un gestore globale delle eccezioni. + + + L'oggetto lanciato deve essere un'&instanceof; di Throwable. + Tentare di lanciare un oggetto che non lo è risulterà in un errore fatale di PHP. + + + A partire da PHP 8.0.0, la parola chiave &throw; è un'espressione e può essere + utilizzata in qualsiasi contesto di espressione. Nelle versioni precedenti era + un'istruzione e doveva trovarsi su una propria riga. + + + + <literal>catch</literal> + + Un blocco &catch; definisce come rispondere a un'eccezione lanciata. Un + blocco &catch; definisce uno o più tipi di eccezione o errore che può + gestire, e opzionalmente una variabile a cui assegnare l'eccezione. (La + variabile era obbligatoria prima di PHP 8.0.0.) Il primo blocco &catch; + che un'eccezione o un errore lanciato incontra e che corrisponde al tipo + dell'oggetto lanciato gestirà l'oggetto. + + + È possibile utilizzare più blocchi &catch; per catturare diverse classi di + eccezioni. L'esecuzione normale (quando nessuna eccezione viene lanciata + all'interno del blocco &try;) continuerà dopo l'ultimo blocco &catch; + definito in sequenza. Le eccezioni possono essere lanciate (&throw;) (o + rilanciate) all'interno di un blocco &catch;. In caso contrario, + l'esecuzione continuerà dopo il blocco &catch; che è stato attivato. + + + Quando viene lanciata un'eccezione, il codice che segue l'istruzione non + verrà eseguito, e PHP tenterà di trovare il primo blocco &catch; + corrispondente. Se un'eccezione non viene catturata, verrà emesso un + errore fatale di PHP con un messaggio + "Uncaught Exception ...", a meno che non sia stato + definito un gestore con set_exception_handler. + + + A partire da PHP 7.1.0, un blocco &catch; può specificare più eccezioni + utilizzando il carattere pipe (|). Questo è utile quando + eccezioni diverse provenienti da gerarchie di classi diverse vengono gestite + allo stesso modo. + + + A partire da PHP 8.0.0, il nome della variabile per un'eccezione catturata + è opzionale. Se non viene specificato, il blocco &catch; verrà comunque + eseguito ma non avrà accesso all'oggetto lanciato. + + + + + <literal>finally</literal> + + Un blocco &finally; può anche essere specificato dopo o al posto dei + blocchi &catch;. Il codice all'interno del blocco &finally; verrà sempre + eseguito dopo i blocchi &try; e &catch;, indipendentemente dal fatto + che un'eccezione sia stata lanciata, e prima che l'esecuzione normale riprenda. + + + Un'interazione notevole è tra il blocco &finally; e un'istruzione &return;. + Se un'istruzione &return; viene incontrata all'interno dei blocchi &try; o &catch;, + il blocco &finally; verrà comunque eseguito. Inoltre, l'istruzione &return; viene + valutata quando viene incontrata, ma il risultato verrà restituito dopo l'esecuzione + del blocco &finally;. In aggiunta, se il blocco &finally; contiene anche un'istruzione + &return;, verrà restituito il valore del blocco &finally;. + + + Un'altra interazione notevole è tra un'eccezione lanciata dall'interno di un blocco + &try; e un'eccezione lanciata dall'interno di un blocco &finally;. Se entrambi i + blocchi lanciano un'eccezione, l'eccezione lanciata dal blocco &finally; sarà + quella propagata, e l'eccezione lanciata dal blocco &try; verrà utilizzata come + eccezione precedente. + + + + + Gestore globale delle eccezioni + + Se un'eccezione può risalire fino all'ambito globale, può essere catturata + da un gestore globale delle eccezioni, se impostato. La funzione + set_exception_handler può impostare una funzione che verrà + chiamata al posto di un blocco &catch; se nessun altro blocco viene invocato. + L'effetto è essenzialmente lo stesso di un programma interamente racchiuso in + un blocco &try;-&catch; con quella funzione come &catch;. + + + + + &reftitle.notes; + + + + Le funzioni interne di PHP utilizzano principalmente la + segnalazione degli errori; solo le + estensioni moderne orientate agli oggetti + utilizzano le eccezioni. Tuttavia, gli errori possono essere facilmente + convertiti in eccezioni con ErrorException. + Questa tecnica funziona solo con gli errori non fatali, tuttavia. + + + Conversione della segnalazione degli errori in eccezioni + + +]]> + + + + + + La Standard PHP Library (SPL) fornisce + un buon numero di eccezioni + predefinite. + + + + + + &reftitle.examples; + + + Lancio di un'eccezione + +getMessage(), "\n"; +} + +// Continua l'esecuzione +echo "Hello World\n"; +?> +]]> + + &example.outputs; + + + + + + Gestione delle eccezioni con un blocco &finally; + +getMessage(), "\n"; +} finally { + echo "First finally.\n"; +} + +try { + echo inverse(0) . "\n"; +} catch (Exception $e) { + echo 'Caught exception: ', $e->getMessage(), "\n"; +} finally { + echo "Second finally.\n"; +} + +// Continua l'esecuzione +echo "Hello World\n"; +?> +]]> + + &example.outputs; + + + + + + Interazione tra il blocco &finally; e &return; + + +]]> + + &example.outputs; + + + + + + Eccezione annidata + +getMessage()); + } + } +} + +$foo = new Test; +$foo->testing(); + +?> +]]> + + &example.outputs; + + + + + + Gestione delle eccezioni con catch multiplo + +testing(); + +?> +]]> + + &example.outputs; + + + + + + Omissione della variabile catturata + Consentito solo in PHP 8.0.0 e versioni successive. + + +]]> + + &example.outputs; + + + + + + Throw come espressione + Consentito solo in PHP 8.0.0 e versioni successive. + +getMessage(); +} +?> +]]> + + &example.outputs; + + + + + + Eccezione nel try e nel finally + +getMessage(), + $e->getPrevious()->getMessage(), + $e->getPrevious()->getPrevious()->getMessage(), + $e->getPrevious()->getPrevious()->getPrevious()->getMessage(), + ); +} +]]> + + &example.outputs; + + + + + + + + Estendere le eccezioni + + È possibile definire una classe di eccezione personalizzata estendendo la classe + Exception predefinita. I membri e le proprietà seguenti mostrano ciò che è + accessibile nella classe figlia che deriva dalla classe Exception predefinita. + + + La classe Exception predefinita + + +]]> + + + + Se una classe estende la classe Exception predefinita e ridefinisce il costruttore, è altamente raccomandato + che chiami anche parent::__construct() + per assicurarsi che tutti i dati disponibili siano stati correttamente assegnati. + Il metodo __toString() può essere + sovrascritto per fornire un output personalizzato quando l'oggetto viene + presentato come stringa. + + + + Le eccezioni non possono essere clonate. Tentare di clonare un'eccezione risulterà in un + errore fatale E_ERROR. + + + + Estensione della classe Exception + + code}]: {$this->message}\n"; + } + + public function customFunction() { + echo "A custom function for this type of exception\n"; + } +} + + +/** + * Crea una classe per testare l'eccezione + */ +class TestException +{ + public $var; + + const THROW_NONE = 0; + const THROW_CUSTOM = 1; + const THROW_DEFAULT = 2; + + function __construct($avalue = self::THROW_NONE) { + + switch ($avalue) { + case self::THROW_CUSTOM: + // lancia un'eccezione personalizzata + throw new MyException('1 is an invalid parameter', 5); + break; + + case self::THROW_DEFAULT: + // lancia quella predefinita. + throw new Exception('2 is not allowed as a parameter', 6); + break; + + default: + // Nessuna eccezione, l'oggetto verrà creato. + $this->var = $avalue; + break; + } + } +} + + +// Esempio 1 +try { + $o = new TestException(TestException::THROW_CUSTOM); +} catch (MyException $e) { // Verrà catturata + echo "Caught my exception\n", $e; + $e->customFunction(); +} catch (Exception $e) { // Saltata + echo "Caught Default Exception\n", $e; +} + +// Continua l'esecuzione +var_dump($o); // Null +echo "\n\n"; + + +// Esempio 2 +try { + $o = new TestException(TestException::THROW_DEFAULT); +} catch (MyException $e) { // Non corrisponde a questo tipo + echo "Caught my exception\n", $e; + $e->customFunction(); +} catch (Exception $e) { // Verrà catturata + echo "Caught Default Exception\n", $e; +} + +// Continua l'esecuzione +var_dump($o); // Null +echo "\n\n"; + + +// Esempio 3 +try { + $o = new TestException(TestException::THROW_CUSTOM); +} catch (Exception $e) { // Verrà catturata + echo "Default Exception caught\n", $e; +} + +// Continua l'esecuzione +var_dump($o); // Null +echo "\n\n"; + + +// Esempio 4 +try { + $o = new TestException(); +} catch (Exception $e) { // Saltata, nessuna eccezione + echo "Default Exception caught\n", $e; +} + +// Continua l'esecuzione +var_dump($o); // TestException +echo "\n\n"; +?> +]]> + + + + + + + \ No newline at end of file diff --git a/reference/apache/functions/apache-note.xml b/reference/apache/functions/apache-note.xml index d271e441e..96afc25dc 100644 --- a/reference/apache/functions/apache-note.xml +++ b/reference/apache/functions/apache-note.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/apache/functions/apache-setenv.xml b/reference/apache/functions/apache-setenv.xml index 6aeb399e6..9bf96a8d8 100644 --- a/reference/apache/functions/apache-setenv.xml +++ b/reference/apache/functions/apache-setenv.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-diff.xml b/reference/array/functions/array-diff.xml index c851b8666..6891fcb51 100644 --- a/reference/array/functions/array-diff.xml +++ b/reference/array/functions/array-diff.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-fill.xml b/reference/array/functions/array-fill.xml index d22f21d9a..61153a03e 100644 --- a/reference/array/functions/array-fill.xml +++ b/reference/array/functions/array-fill.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-flip.xml b/reference/array/functions/array-flip.xml index a6938d716..270288eea 100644 --- a/reference/array/functions/array-flip.xml +++ b/reference/array/functions/array-flip.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-intersect-assoc.xml b/reference/array/functions/array-intersect-assoc.xml index 6b5bcd5b8..c83277c27 100644 --- a/reference/array/functions/array-intersect-assoc.xml +++ b/reference/array/functions/array-intersect-assoc.xml @@ -1,5 +1,5 @@ - + array_intersect_assoc diff --git a/reference/array/functions/array-intersect.xml b/reference/array/functions/array-intersect.xml index f25149634..522c5f108 100644 --- a/reference/array/functions/array-intersect.xml +++ b/reference/array/functions/array-intersect.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-keys.xml b/reference/array/functions/array-keys.xml index 4a222f872..8e297fd2b 100644 --- a/reference/array/functions/array-keys.xml +++ b/reference/array/functions/array-keys.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-merge.xml b/reference/array/functions/array-merge.xml index 3736771c8..73b495bb7 100644 --- a/reference/array/functions/array-merge.xml +++ b/reference/array/functions/array-merge.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-pad.xml b/reference/array/functions/array-pad.xml index f586f6b26..63a83dc6e 100644 --- a/reference/array/functions/array-pad.xml +++ b/reference/array/functions/array-pad.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-pop.xml b/reference/array/functions/array-pop.xml index 422ec1010..5175219fd 100644 --- a/reference/array/functions/array-pop.xml +++ b/reference/array/functions/array-pop.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-push.xml b/reference/array/functions/array-push.xml index fa100044a..f77ecb97c 100644 --- a/reference/array/functions/array-push.xml +++ b/reference/array/functions/array-push.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-rand.xml b/reference/array/functions/array-rand.xml index bbd8700c2..68586d351 100644 --- a/reference/array/functions/array-rand.xml +++ b/reference/array/functions/array-rand.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-reduce.xml b/reference/array/functions/array-reduce.xml index 776182cf7..c6a97c9ad 100644 --- a/reference/array/functions/array-reduce.xml +++ b/reference/array/functions/array-reduce.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-reverse.xml b/reference/array/functions/array-reverse.xml index a82dd3293..221dac257 100644 --- a/reference/array/functions/array-reverse.xml +++ b/reference/array/functions/array-reverse.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-search.xml b/reference/array/functions/array-search.xml index 349d40418..5ea029435 100644 --- a/reference/array/functions/array-search.xml +++ b/reference/array/functions/array-search.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-shift.xml b/reference/array/functions/array-shift.xml index 8133d543b..f7f73d028 100644 --- a/reference/array/functions/array-shift.xml +++ b/reference/array/functions/array-shift.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-slice.xml b/reference/array/functions/array-slice.xml index 2067215d2..c9599dc1c 100644 --- a/reference/array/functions/array-slice.xml +++ b/reference/array/functions/array-slice.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-splice.xml b/reference/array/functions/array-splice.xml index 980b51b74..d11f9b2f9 100644 --- a/reference/array/functions/array-splice.xml +++ b/reference/array/functions/array-splice.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-sum.xml b/reference/array/functions/array-sum.xml index 1f62e4ce7..05ad88eff 100644 --- a/reference/array/functions/array-sum.xml +++ b/reference/array/functions/array-sum.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-unique.xml b/reference/array/functions/array-unique.xml index f257af77d..2dbda694b 100644 --- a/reference/array/functions/array-unique.xml +++ b/reference/array/functions/array-unique.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-unshift.xml b/reference/array/functions/array-unshift.xml index 964198b7c..eb6577118 100644 --- a/reference/array/functions/array-unshift.xml +++ b/reference/array/functions/array-unshift.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-values.xml b/reference/array/functions/array-values.xml index dad7b9b4b..a7dee706e 100644 --- a/reference/array/functions/array-values.xml +++ b/reference/array/functions/array-values.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array-walk.xml b/reference/array/functions/array-walk.xml index 7d3e536ee..e8469fa1a 100644 --- a/reference/array/functions/array-walk.xml +++ b/reference/array/functions/array-walk.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/array.xml b/reference/array/functions/array.xml index b0081ed11..d0a81cda8 100644 --- a/reference/array/functions/array.xml +++ b/reference/array/functions/array.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/arsort.xml b/reference/array/functions/arsort.xml index 66fcc71ef..0af5fc5b6 100644 --- a/reference/array/functions/arsort.xml +++ b/reference/array/functions/arsort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/asort.xml b/reference/array/functions/asort.xml index f21e66621..8791378f9 100644 --- a/reference/array/functions/asort.xml +++ b/reference/array/functions/asort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/compact.xml b/reference/array/functions/compact.xml index fe3e3054a..0d330c0b8 100644 --- a/reference/array/functions/compact.xml +++ b/reference/array/functions/compact.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/count.xml b/reference/array/functions/count.xml index f381b0a29..0c79ee9f4 100644 --- a/reference/array/functions/count.xml +++ b/reference/array/functions/count.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/current.xml b/reference/array/functions/current.xml index 42a325c8e..6e9df3450 100644 --- a/reference/array/functions/current.xml +++ b/reference/array/functions/current.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/each.xml b/reference/array/functions/each.xml index eb5f38ffc..43639e44e 100644 --- a/reference/array/functions/each.xml +++ b/reference/array/functions/each.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/end.xml b/reference/array/functions/end.xml index 211ad83df..04fff2034 100644 --- a/reference/array/functions/end.xml +++ b/reference/array/functions/end.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/in-array.xml b/reference/array/functions/in-array.xml index 3933972d0..be519c586 100644 --- a/reference/array/functions/in-array.xml +++ b/reference/array/functions/in-array.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/krsort.xml b/reference/array/functions/krsort.xml index 5437e32d9..02de61a95 100644 --- a/reference/array/functions/krsort.xml +++ b/reference/array/functions/krsort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/ksort.xml b/reference/array/functions/ksort.xml index a75c62245..d19172ba4 100644 --- a/reference/array/functions/ksort.xml +++ b/reference/array/functions/ksort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/list.xml b/reference/array/functions/list.xml index 94c14b749..19b1290fe 100644 --- a/reference/array/functions/list.xml +++ b/reference/array/functions/list.xml @@ -1,5 +1,5 @@ - + list diff --git a/reference/array/functions/natcasesort.xml b/reference/array/functions/natcasesort.xml index 0d06b5596..7abe58fd7 100644 --- a/reference/array/functions/natcasesort.xml +++ b/reference/array/functions/natcasesort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/natsort.xml b/reference/array/functions/natsort.xml index 4c91325a9..9e705e05d 100644 --- a/reference/array/functions/natsort.xml +++ b/reference/array/functions/natsort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/next.xml b/reference/array/functions/next.xml index c34c727c1..8b25f180c 100644 --- a/reference/array/functions/next.xml +++ b/reference/array/functions/next.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/prev.xml b/reference/array/functions/prev.xml index 053e10ae2..49cca8e06 100644 --- a/reference/array/functions/prev.xml +++ b/reference/array/functions/prev.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/range.xml b/reference/array/functions/range.xml index 795f8b56d..0c0346de9 100644 --- a/reference/array/functions/range.xml +++ b/reference/array/functions/range.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/reset.xml b/reference/array/functions/reset.xml index 7752e3b79..78995d6e2 100644 --- a/reference/array/functions/reset.xml +++ b/reference/array/functions/reset.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/rsort.xml b/reference/array/functions/rsort.xml index c1656be33..097ac68ef 100644 --- a/reference/array/functions/rsort.xml +++ b/reference/array/functions/rsort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/shuffle.xml b/reference/array/functions/shuffle.xml index 6c4c8bb72..45854f00f 100644 --- a/reference/array/functions/shuffle.xml +++ b/reference/array/functions/shuffle.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/sort.xml b/reference/array/functions/sort.xml index 0aed2fbc3..41dd8caef 100644 --- a/reference/array/functions/sort.xml +++ b/reference/array/functions/sort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/uasort.xml b/reference/array/functions/uasort.xml index 128b67325..c02392100 100644 --- a/reference/array/functions/uasort.xml +++ b/reference/array/functions/uasort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/uksort.xml b/reference/array/functions/uksort.xml index 2c0370fda..2d765af48 100644 --- a/reference/array/functions/uksort.xml +++ b/reference/array/functions/uksort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/array/functions/usort.xml b/reference/array/functions/usort.xml index 29abbb3f8..0c1c32cb9 100644 --- a/reference/array/functions/usort.xml +++ b/reference/array/functions/usort.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/bc/functions/bccomp.xml b/reference/bc/functions/bccomp.xml index 756227082..8756aac47 100644 --- a/reference/bc/functions/bccomp.xml +++ b/reference/bc/functions/bccomp.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/bc/functions/bcmod.xml b/reference/bc/functions/bcmod.xml index 19dddf5b3..88f36538f 100644 --- a/reference/bc/functions/bcmod.xml +++ b/reference/bc/functions/bcmod.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/bc/functions/bcmul.xml b/reference/bc/functions/bcmul.xml index 782887579..ccad78ef1 100644 --- a/reference/bc/functions/bcmul.xml +++ b/reference/bc/functions/bcmul.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/bc/functions/bcpow.xml b/reference/bc/functions/bcpow.xml index c91ced4ab..1cbe4f72a 100644 --- a/reference/bc/functions/bcpow.xml +++ b/reference/bc/functions/bcpow.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/bc/functions/bcpowmod.xml b/reference/bc/functions/bcpowmod.xml index a2d7fe80a..1da82ba30 100644 --- a/reference/bc/functions/bcpowmod.xml +++ b/reference/bc/functions/bcpowmod.xml @@ -1,5 +1,5 @@ - + bcpowmod diff --git a/reference/bc/functions/bcscale.xml b/reference/bc/functions/bcscale.xml index 5dba6440a..45da1f029 100644 --- a/reference/bc/functions/bcscale.xml +++ b/reference/bc/functions/bcscale.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/bc/functions/bcsqrt.xml b/reference/bc/functions/bcsqrt.xml index cb2d06485..a84f3d33d 100644 --- a/reference/bc/functions/bcsqrt.xml +++ b/reference/bc/functions/bcsqrt.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/bc/functions/bcsub.xml b/reference/bc/functions/bcsub.xml index 02811842f..a28b23d96 100644 --- a/reference/bc/functions/bcsub.xml +++ b/reference/bc/functions/bcsub.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/cal-days-in-month.xml b/reference/calendar/functions/cal-days-in-month.xml index cf0ab3944..efb2a10bc 100644 --- a/reference/calendar/functions/cal-days-in-month.xml +++ b/reference/calendar/functions/cal-days-in-month.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/cal-from-jd.xml b/reference/calendar/functions/cal-from-jd.xml index 0f4880057..9955980c0 100644 --- a/reference/calendar/functions/cal-from-jd.xml +++ b/reference/calendar/functions/cal-from-jd.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/cal-info.xml b/reference/calendar/functions/cal-info.xml index d19dc56de..43b5f6276 100644 --- a/reference/calendar/functions/cal-info.xml +++ b/reference/calendar/functions/cal-info.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/cal-to-jd.xml b/reference/calendar/functions/cal-to-jd.xml index 2a9fa6d7b..0e36626b8 100644 --- a/reference/calendar/functions/cal-to-jd.xml +++ b/reference/calendar/functions/cal-to-jd.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/easter-date.xml b/reference/calendar/functions/easter-date.xml index a630e50ac..ace5f40cc 100644 --- a/reference/calendar/functions/easter-date.xml +++ b/reference/calendar/functions/easter-date.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/easter-days.xml b/reference/calendar/functions/easter-days.xml index 0ac39299e..3e030318f 100644 --- a/reference/calendar/functions/easter-days.xml +++ b/reference/calendar/functions/easter-days.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/frenchtojd.xml b/reference/calendar/functions/frenchtojd.xml index f8ce2abc6..f810dfb08 100644 --- a/reference/calendar/functions/frenchtojd.xml +++ b/reference/calendar/functions/frenchtojd.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/gregoriantojd.xml b/reference/calendar/functions/gregoriantojd.xml index 18ab55eb3..4f3ddf7db 100644 --- a/reference/calendar/functions/gregoriantojd.xml +++ b/reference/calendar/functions/gregoriantojd.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/jddayofweek.xml b/reference/calendar/functions/jddayofweek.xml index cb3382c28..aa5b8835d 100644 --- a/reference/calendar/functions/jddayofweek.xml +++ b/reference/calendar/functions/jddayofweek.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/jdmonthname.xml b/reference/calendar/functions/jdmonthname.xml index 24027fed4..8202210eb 100644 --- a/reference/calendar/functions/jdmonthname.xml +++ b/reference/calendar/functions/jdmonthname.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/jdtofrench.xml b/reference/calendar/functions/jdtofrench.xml index 27088fee8..d0a5dfec2 100644 --- a/reference/calendar/functions/jdtofrench.xml +++ b/reference/calendar/functions/jdtofrench.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/jdtogregorian.xml b/reference/calendar/functions/jdtogregorian.xml index 731ab08d1..f982be150 100644 --- a/reference/calendar/functions/jdtogregorian.xml +++ b/reference/calendar/functions/jdtogregorian.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/jdtojewish.xml b/reference/calendar/functions/jdtojewish.xml index 8b28288ff..6655f04c5 100644 --- a/reference/calendar/functions/jdtojewish.xml +++ b/reference/calendar/functions/jdtojewish.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/jdtojulian.xml b/reference/calendar/functions/jdtojulian.xml index 233db0ea7..b37b8bc77 100644 --- a/reference/calendar/functions/jdtojulian.xml +++ b/reference/calendar/functions/jdtojulian.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/jdtounix.xml b/reference/calendar/functions/jdtounix.xml index cc1b597c3..805cff039 100644 --- a/reference/calendar/functions/jdtounix.xml +++ b/reference/calendar/functions/jdtounix.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/jewishtojd.xml b/reference/calendar/functions/jewishtojd.xml index 87be005d6..069080c00 100644 --- a/reference/calendar/functions/jewishtojd.xml +++ b/reference/calendar/functions/jewishtojd.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/juliantojd.xml b/reference/calendar/functions/juliantojd.xml index 70041eebb..1b3c9cb4e 100644 --- a/reference/calendar/functions/juliantojd.xml +++ b/reference/calendar/functions/juliantojd.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/calendar/functions/unixtojd.xml b/reference/calendar/functions/unixtojd.xml index e84788db4..6f2d45f41 100644 --- a/reference/calendar/functions/unixtojd.xml +++ b/reference/calendar/functions/unixtojd.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/com/functions/com-load-typelib.xml b/reference/com/functions/com-load-typelib.xml index f0ffc8993..66594713b 100644 --- a/reference/com/functions/com-load-typelib.xml +++ b/reference/com/functions/com-load-typelib.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/datetime/functions/gmmktime.xml b/reference/datetime/functions/gmmktime.xml index 11de04b0c..390cf4d5d 100644 --- a/reference/datetime/functions/gmmktime.xml +++ b/reference/datetime/functions/gmmktime.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/datetime/functions/gmstrftime.xml b/reference/datetime/functions/gmstrftime.xml index c1ce09caa..a63275ecb 100644 --- a/reference/datetime/functions/gmstrftime.xml +++ b/reference/datetime/functions/gmstrftime.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/datetime/functions/localtime.xml b/reference/datetime/functions/localtime.xml index 891452cde..54372b47f 100644 --- a/reference/datetime/functions/localtime.xml +++ b/reference/datetime/functions/localtime.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/datetime/functions/strftime.xml b/reference/datetime/functions/strftime.xml index c84720875..326bd07e1 100644 --- a/reference/datetime/functions/strftime.xml +++ b/reference/datetime/functions/strftime.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/datetime/functions/time.xml b/reference/datetime/functions/time.xml index 108c363d4..b3d372fc5 100644 --- a/reference/datetime/functions/time.xml +++ b/reference/datetime/functions/time.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/dbase/functions/dbase-add-record.xml b/reference/dbase/functions/dbase-add-record.xml index d1b9b2956..43ee0fb05 100644 --- a/reference/dbase/functions/dbase-add-record.xml +++ b/reference/dbase/functions/dbase-add-record.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/dbase/functions/dbase-close.xml b/reference/dbase/functions/dbase-close.xml index 0104465f5..fe8aae5f8 100644 --- a/reference/dbase/functions/dbase-close.xml +++ b/reference/dbase/functions/dbase-close.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/dbase/functions/dbase-create.xml b/reference/dbase/functions/dbase-create.xml index 3e1720f91..32c7eee2c 100644 --- a/reference/dbase/functions/dbase-create.xml +++ b/reference/dbase/functions/dbase-create.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/dbase/functions/dbase-delete-record.xml b/reference/dbase/functions/dbase-delete-record.xml index 2b3f43a66..bb62a4db7 100644 --- a/reference/dbase/functions/dbase-delete-record.xml +++ b/reference/dbase/functions/dbase-delete-record.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/dbase/functions/dbase-get-header-info.xml b/reference/dbase/functions/dbase-get-header-info.xml index 512902638..8518dc3f8 100644 --- a/reference/dbase/functions/dbase-get-header-info.xml +++ b/reference/dbase/functions/dbase-get-header-info.xml @@ -1,5 +1,5 @@ - + dbase_get_header_info diff --git a/reference/dbase/functions/dbase-get-record-with-names.xml b/reference/dbase/functions/dbase-get-record-with-names.xml index 6b04955b1..79cbff638 100644 --- a/reference/dbase/functions/dbase-get-record-with-names.xml +++ b/reference/dbase/functions/dbase-get-record-with-names.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/dbase/functions/dbase-get-record.xml b/reference/dbase/functions/dbase-get-record.xml index 6f5e938e3..b3c8fbd9e 100644 --- a/reference/dbase/functions/dbase-get-record.xml +++ b/reference/dbase/functions/dbase-get-record.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/dbase/functions/dbase-numfields.xml b/reference/dbase/functions/dbase-numfields.xml index 11bbbd121..dd9eccf3a 100644 --- a/reference/dbase/functions/dbase-numfields.xml +++ b/reference/dbase/functions/dbase-numfields.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/dbase/functions/dbase-numrecords.xml b/reference/dbase/functions/dbase-numrecords.xml index 813080795..38818b1a0 100644 --- a/reference/dbase/functions/dbase-numrecords.xml +++ b/reference/dbase/functions/dbase-numrecords.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/dbase/functions/dbase-pack.xml b/reference/dbase/functions/dbase-pack.xml index e3eca2df5..fd58b5424 100644 --- a/reference/dbase/functions/dbase-pack.xml +++ b/reference/dbase/functions/dbase-pack.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/dbase/functions/dbase-replace-record.xml b/reference/dbase/functions/dbase-replace-record.xml index 1b6c21fd2..ffcd651e3 100644 --- a/reference/dbase/functions/dbase-replace-record.xml +++ b/reference/dbase/functions/dbase-replace-record.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/dio/functions/dio-fcntl.xml b/reference/dio/functions/dio-fcntl.xml index 595ef1ab0..d3110710a 100644 --- a/reference/dio/functions/dio-fcntl.xml +++ b/reference/dio/functions/dio-fcntl.xml @@ -1,5 +1,5 @@ - + dio_fcntl diff --git a/reference/dio/functions/dio-open.xml b/reference/dio/functions/dio-open.xml index db272501f..2163c3c78 100644 --- a/reference/dio/functions/dio-open.xml +++ b/reference/dio/functions/dio-open.xml @@ -1,5 +1,5 @@ - + dio_open diff --git a/reference/dio/functions/dio-read.xml b/reference/dio/functions/dio-read.xml index 6c29dbc1a..a7facfe7a 100644 --- a/reference/dio/functions/dio-read.xml +++ b/reference/dio/functions/dio-read.xml @@ -1,5 +1,5 @@ - + dio_read diff --git a/reference/dio/functions/dio-seek.xml b/reference/dio/functions/dio-seek.xml index a15194f6d..d80bdb8a2 100644 --- a/reference/dio/functions/dio-seek.xml +++ b/reference/dio/functions/dio-seek.xml @@ -1,5 +1,5 @@ - + dio_seek diff --git a/reference/dio/functions/dio-tcsetattr.xml b/reference/dio/functions/dio-tcsetattr.xml index 71da70074..84be9c2a8 100644 --- a/reference/dio/functions/dio-tcsetattr.xml +++ b/reference/dio/functions/dio-tcsetattr.xml @@ -1,5 +1,5 @@ - + dio_tcsetattr diff --git a/reference/dio/functions/dio-write.xml b/reference/dio/functions/dio-write.xml index e84634dc8..39d11809f 100644 --- a/reference/dio/functions/dio-write.xml +++ b/reference/dio/functions/dio-write.xml @@ -1,5 +1,5 @@ - + dio_write diff --git a/reference/dir/functions/chroot.xml b/reference/dir/functions/chroot.xml index 8b2063b02..dd5c03ec2 100644 --- a/reference/dir/functions/chroot.xml +++ b/reference/dir/functions/chroot.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/dir/functions/closedir.xml b/reference/dir/functions/closedir.xml index 85a7d212c..7fe6528be 100644 --- a/reference/dir/functions/closedir.xml +++ b/reference/dir/functions/closedir.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/dir/functions/getcwd.xml b/reference/dir/functions/getcwd.xml index 1eee04c7f..2d7dd0ac2 100644 --- a/reference/dir/functions/getcwd.xml +++ b/reference/dir/functions/getcwd.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/dir/functions/readdir.xml b/reference/dir/functions/readdir.xml index 124139087..d5ad4520c 100644 --- a/reference/dir/functions/readdir.xml +++ b/reference/dir/functions/readdir.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/dir/functions/rewinddir.xml b/reference/dir/functions/rewinddir.xml index 21605ed59..d1eacec90 100644 --- a/reference/dir/functions/rewinddir.xml +++ b/reference/dir/functions/rewinddir.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/errorfunc/functions/debug-print-backtrace.xml b/reference/errorfunc/functions/debug-print-backtrace.xml index c3daa24b1..f8a99b38e 100644 --- a/reference/errorfunc/functions/debug-print-backtrace.xml +++ b/reference/errorfunc/functions/debug-print-backtrace.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/errorfunc/functions/error-reporting.xml b/reference/errorfunc/functions/error-reporting.xml index 75f17a8ed..9c0791652 100644 --- a/reference/errorfunc/functions/error-reporting.xml +++ b/reference/errorfunc/functions/error-reporting.xml @@ -1,5 +1,5 @@ - + error_reporting diff --git a/reference/errorfunc/functions/restore-error-handler.xml b/reference/errorfunc/functions/restore-error-handler.xml index 9fb9074ab..de830aa64 100644 --- a/reference/errorfunc/functions/restore-error-handler.xml +++ b/reference/errorfunc/functions/restore-error-handler.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/errorfunc/functions/restore-exception-handler.xml b/reference/errorfunc/functions/restore-exception-handler.xml index 026897154..b4d9eac21 100644 --- a/reference/errorfunc/functions/restore-exception-handler.xml +++ b/reference/errorfunc/functions/restore-exception-handler.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/errorfunc/functions/trigger-error.xml b/reference/errorfunc/functions/trigger-error.xml index 0e82dbd7b..cd763ad60 100644 --- a/reference/errorfunc/functions/trigger-error.xml +++ b/reference/errorfunc/functions/trigger-error.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/exec/functions/escapeshellarg.xml b/reference/exec/functions/escapeshellarg.xml index 993b7f02f..420d74bd3 100644 --- a/reference/exec/functions/escapeshellarg.xml +++ b/reference/exec/functions/escapeshellarg.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/exec/functions/escapeshellcmd.xml b/reference/exec/functions/escapeshellcmd.xml index 633c09b66..6aeeb7c22 100644 --- a/reference/exec/functions/escapeshellcmd.xml +++ b/reference/exec/functions/escapeshellcmd.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/filesystem/functions/basename.xml b/reference/filesystem/functions/basename.xml index 7ba8a2990..3ef3c4a0f 100644 --- a/reference/filesystem/functions/basename.xml +++ b/reference/filesystem/functions/basename.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/filesystem/functions/clearstatcache.xml b/reference/filesystem/functions/clearstatcache.xml index 2e2fcffc6..df6f17971 100644 --- a/reference/filesystem/functions/clearstatcache.xml +++ b/reference/filesystem/functions/clearstatcache.xml @@ -1,5 +1,5 @@ - + clearstatcache diff --git a/reference/filesystem/functions/copy.xml b/reference/filesystem/functions/copy.xml index 91a9b3e45..b2b23dca0 100644 --- a/reference/filesystem/functions/copy.xml +++ b/reference/filesystem/functions/copy.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/delete.xml b/reference/filesystem/functions/delete.xml index 79a389fb1..5713e0aef 100644 --- a/reference/filesystem/functions/delete.xml +++ b/reference/filesystem/functions/delete.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/disk-free-space.xml b/reference/filesystem/functions/disk-free-space.xml index 7444d3ffa..7e2ee34a2 100644 --- a/reference/filesystem/functions/disk-free-space.xml +++ b/reference/filesystem/functions/disk-free-space.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/disk-total-space.xml b/reference/filesystem/functions/disk-total-space.xml index f9248752f..28fd105bf 100644 --- a/reference/filesystem/functions/disk-total-space.xml +++ b/reference/filesystem/functions/disk-total-space.xml @@ -1,5 +1,5 @@ - + disk_total_space diff --git a/reference/filesystem/functions/fclose.xml b/reference/filesystem/functions/fclose.xml index b23bc877a..91a333604 100644 --- a/reference/filesystem/functions/fclose.xml +++ b/reference/filesystem/functions/fclose.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/feof.xml b/reference/filesystem/functions/feof.xml index 8ffb41236..9614737d7 100644 --- a/reference/filesystem/functions/feof.xml +++ b/reference/filesystem/functions/feof.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/fflush.xml b/reference/filesystem/functions/fflush.xml index d91a607c8..d7654009f 100644 --- a/reference/filesystem/functions/fflush.xml +++ b/reference/filesystem/functions/fflush.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/fgetc.xml b/reference/filesystem/functions/fgetc.xml index c00e48b19..9116af515 100644 --- a/reference/filesystem/functions/fgetc.xml +++ b/reference/filesystem/functions/fgetc.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/fgets.xml b/reference/filesystem/functions/fgets.xml index 096535e12..bf83bb2c7 100644 --- a/reference/filesystem/functions/fgets.xml +++ b/reference/filesystem/functions/fgets.xml @@ -1,5 +1,5 @@ - + fgets diff --git a/reference/filesystem/functions/fgetss.xml b/reference/filesystem/functions/fgetss.xml index d4c3d8bbd..059c659ee 100644 --- a/reference/filesystem/functions/fgetss.xml +++ b/reference/filesystem/functions/fgetss.xml @@ -1,5 +1,5 @@ - + fgetss diff --git a/reference/filesystem/functions/file-exists.xml b/reference/filesystem/functions/file-exists.xml index 145f31a49..c2af72c79 100644 --- a/reference/filesystem/functions/file-exists.xml +++ b/reference/filesystem/functions/file-exists.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/filesystem/functions/file-get-contents.xml b/reference/filesystem/functions/file-get-contents.xml index af8b91739..874873617 100644 --- a/reference/filesystem/functions/file-get-contents.xml +++ b/reference/filesystem/functions/file-get-contents.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/filesystem/functions/fileatime.xml b/reference/filesystem/functions/fileatime.xml index 20353724e..218c31da9 100644 --- a/reference/filesystem/functions/fileatime.xml +++ b/reference/filesystem/functions/fileatime.xml @@ -1,5 +1,5 @@ - + fileatime diff --git a/reference/filesystem/functions/filectime.xml b/reference/filesystem/functions/filectime.xml index 7e20aab48..6d7c5945f 100644 --- a/reference/filesystem/functions/filectime.xml +++ b/reference/filesystem/functions/filectime.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/filesystem/functions/fileinode.xml b/reference/filesystem/functions/fileinode.xml index 7da7862d7..30da7ffe1 100644 --- a/reference/filesystem/functions/fileinode.xml +++ b/reference/filesystem/functions/fileinode.xml @@ -1,6 +1,6 @@ - + fileinode diff --git a/reference/filesystem/functions/filemtime.xml b/reference/filesystem/functions/filemtime.xml index 73d45bde7..10e4e1d65 100644 --- a/reference/filesystem/functions/filemtime.xml +++ b/reference/filesystem/functions/filemtime.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/filesystem/functions/fileowner.xml b/reference/filesystem/functions/fileowner.xml index ef61525a3..23287d5bc 100644 --- a/reference/filesystem/functions/fileowner.xml +++ b/reference/filesystem/functions/fileowner.xml @@ -1,6 +1,6 @@ - + fileowner diff --git a/reference/filesystem/functions/fileperms.xml b/reference/filesystem/functions/fileperms.xml index 030bbf37f..1c8b1c692 100644 --- a/reference/filesystem/functions/fileperms.xml +++ b/reference/filesystem/functions/fileperms.xml @@ -1,6 +1,6 @@ - + diff --git a/reference/filesystem/functions/filesize.xml b/reference/filesystem/functions/filesize.xml index 8564d63e4..3dd9d532f 100644 --- a/reference/filesystem/functions/filesize.xml +++ b/reference/filesystem/functions/filesize.xml @@ -1,6 +1,6 @@ - + filesize diff --git a/reference/filesystem/functions/filetype.xml b/reference/filesystem/functions/filetype.xml index 2ea5db851..e46781f2c 100644 --- a/reference/filesystem/functions/filetype.xml +++ b/reference/filesystem/functions/filetype.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/flock.xml b/reference/filesystem/functions/flock.xml index 93f8072e9..5246b47bc 100644 --- a/reference/filesystem/functions/flock.xml +++ b/reference/filesystem/functions/flock.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/filesystem/functions/fpassthru.xml b/reference/filesystem/functions/fpassthru.xml index cc8ef2766..333db9b5c 100644 --- a/reference/filesystem/functions/fpassthru.xml +++ b/reference/filesystem/functions/fpassthru.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/filesystem/functions/fscanf.xml b/reference/filesystem/functions/fscanf.xml index 6ec66a952..8d8abe71d 100644 --- a/reference/filesystem/functions/fscanf.xml +++ b/reference/filesystem/functions/fscanf.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/fseek.xml b/reference/filesystem/functions/fseek.xml index 2d34485b2..0442c5e3f 100644 --- a/reference/filesystem/functions/fseek.xml +++ b/reference/filesystem/functions/fseek.xml @@ -1,6 +1,6 @@ - + diff --git a/reference/filesystem/functions/fstat.xml b/reference/filesystem/functions/fstat.xml index c73179d45..7429e9fdd 100644 --- a/reference/filesystem/functions/fstat.xml +++ b/reference/filesystem/functions/fstat.xml @@ -1,6 +1,6 @@ - + fstat diff --git a/reference/filesystem/functions/ftell.xml b/reference/filesystem/functions/ftell.xml index 05da2be8c..df50de4aa 100644 --- a/reference/filesystem/functions/ftell.xml +++ b/reference/filesystem/functions/ftell.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/ftruncate.xml b/reference/filesystem/functions/ftruncate.xml index 80153cb62..c0bc49687 100644 --- a/reference/filesystem/functions/ftruncate.xml +++ b/reference/filesystem/functions/ftruncate.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/filesystem/functions/is-executable.xml b/reference/filesystem/functions/is-executable.xml index dda1929aa..9e1b13367 100644 --- a/reference/filesystem/functions/is-executable.xml +++ b/reference/filesystem/functions/is-executable.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/is-file.xml b/reference/filesystem/functions/is-file.xml index fe628fa9a..2056e9a00 100644 --- a/reference/filesystem/functions/is-file.xml +++ b/reference/filesystem/functions/is-file.xml @@ -1,5 +1,5 @@ - + is_file diff --git a/reference/filesystem/functions/is-link.xml b/reference/filesystem/functions/is-link.xml index 6451c6fa5..012b5388d 100644 --- a/reference/filesystem/functions/is-link.xml +++ b/reference/filesystem/functions/is-link.xml @@ -1,5 +1,5 @@ - + is_link diff --git a/reference/filesystem/functions/is-readable.xml b/reference/filesystem/functions/is-readable.xml index cc23c180b..8c20edf83 100644 --- a/reference/filesystem/functions/is-readable.xml +++ b/reference/filesystem/functions/is-readable.xml @@ -1,5 +1,5 @@ - + is_readable diff --git a/reference/filesystem/functions/is-uploaded-file.xml b/reference/filesystem/functions/is-uploaded-file.xml index 2f3633071..104bbd8a5 100644 --- a/reference/filesystem/functions/is-uploaded-file.xml +++ b/reference/filesystem/functions/is-uploaded-file.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/is-writable.xml b/reference/filesystem/functions/is-writable.xml index 221e54821..a1ae5260a 100644 --- a/reference/filesystem/functions/is-writable.xml +++ b/reference/filesystem/functions/is-writable.xml @@ -1,5 +1,5 @@ - + is_writable diff --git a/reference/filesystem/functions/link.xml b/reference/filesystem/functions/link.xml index d6dfcaf63..f2aad125c 100644 --- a/reference/filesystem/functions/link.xml +++ b/reference/filesystem/functions/link.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/linkinfo.xml b/reference/filesystem/functions/linkinfo.xml index f1ed9d4a6..014a8f5a3 100644 --- a/reference/filesystem/functions/linkinfo.xml +++ b/reference/filesystem/functions/linkinfo.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/lstat.xml b/reference/filesystem/functions/lstat.xml index fd4a5b98f..4edae9fac 100644 --- a/reference/filesystem/functions/lstat.xml +++ b/reference/filesystem/functions/lstat.xml @@ -1,6 +1,6 @@ - + lstat diff --git a/reference/filesystem/functions/pathinfo.xml b/reference/filesystem/functions/pathinfo.xml index db26ea8c4..9def98234 100644 --- a/reference/filesystem/functions/pathinfo.xml +++ b/reference/filesystem/functions/pathinfo.xml @@ -1,6 +1,6 @@ - + diff --git a/reference/filesystem/functions/pclose.xml b/reference/filesystem/functions/pclose.xml index fc7658fe8..d2cb1bf0d 100644 --- a/reference/filesystem/functions/pclose.xml +++ b/reference/filesystem/functions/pclose.xml @@ -1,6 +1,6 @@ - + pclose diff --git a/reference/filesystem/functions/readfile.xml b/reference/filesystem/functions/readfile.xml index 35f20ba31..5ce12b992 100644 --- a/reference/filesystem/functions/readfile.xml +++ b/reference/filesystem/functions/readfile.xml @@ -1,6 +1,6 @@ - + readfile diff --git a/reference/filesystem/functions/readlink.xml b/reference/filesystem/functions/readlink.xml index fe256502c..6bfc29f99 100644 --- a/reference/filesystem/functions/readlink.xml +++ b/reference/filesystem/functions/readlink.xml @@ -1,6 +1,6 @@ - + diff --git a/reference/filesystem/functions/realpath.xml b/reference/filesystem/functions/realpath.xml index 249e45cf4..169e8fe8b 100644 --- a/reference/filesystem/functions/realpath.xml +++ b/reference/filesystem/functions/realpath.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/filesystem/functions/rename.xml b/reference/filesystem/functions/rename.xml index efcc0145c..7d3c65cb9 100644 --- a/reference/filesystem/functions/rename.xml +++ b/reference/filesystem/functions/rename.xml @@ -1,6 +1,6 @@ - + rename diff --git a/reference/filesystem/functions/rewind.xml b/reference/filesystem/functions/rewind.xml index 68e5fcceb..3f609cd70 100644 --- a/reference/filesystem/functions/rewind.xml +++ b/reference/filesystem/functions/rewind.xml @@ -1,6 +1,6 @@ - + rewind diff --git a/reference/filesystem/functions/stat.xml b/reference/filesystem/functions/stat.xml index 6bfbea213..176adccd8 100644 --- a/reference/filesystem/functions/stat.xml +++ b/reference/filesystem/functions/stat.xml @@ -1,6 +1,6 @@ - + diff --git a/reference/filesystem/functions/symlink.xml b/reference/filesystem/functions/symlink.xml index c359d3fed..b21f37f3c 100644 --- a/reference/filesystem/functions/symlink.xml +++ b/reference/filesystem/functions/symlink.xml @@ -1,6 +1,6 @@ - + diff --git a/reference/filesystem/functions/tempnam.xml b/reference/filesystem/functions/tempnam.xml index 42ee8d9d6..a3b84f909 100644 --- a/reference/filesystem/functions/tempnam.xml +++ b/reference/filesystem/functions/tempnam.xml @@ -1,6 +1,6 @@ - + diff --git a/reference/filesystem/functions/tmpfile.xml b/reference/filesystem/functions/tmpfile.xml index d745500bd..74bae8caf 100644 --- a/reference/filesystem/functions/tmpfile.xml +++ b/reference/filesystem/functions/tmpfile.xml @@ -1,6 +1,6 @@ - + tmpfile diff --git a/reference/filesystem/functions/touch.xml b/reference/filesystem/functions/touch.xml index 5d70b0948..7dc8d76ad 100644 --- a/reference/filesystem/functions/touch.xml +++ b/reference/filesystem/functions/touch.xml @@ -1,6 +1,6 @@ - + diff --git a/reference/filesystem/functions/umask.xml b/reference/filesystem/functions/umask.xml index 1fa07d7ea..3ca9e6280 100644 --- a/reference/filesystem/functions/umask.xml +++ b/reference/filesystem/functions/umask.xml @@ -1,6 +1,6 @@ - + umask diff --git a/reference/filesystem/functions/unlink.xml b/reference/filesystem/functions/unlink.xml index 7a0670767..6a3927a85 100644 --- a/reference/filesystem/functions/unlink.xml +++ b/reference/filesystem/functions/unlink.xml @@ -1,6 +1,6 @@ - + unlink diff --git a/reference/ftp/functions/ftp-cdup.xml b/reference/ftp/functions/ftp-cdup.xml index e906e663b..571a96558 100644 --- a/reference/ftp/functions/ftp-cdup.xml +++ b/reference/ftp/functions/ftp-cdup.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-chdir.xml b/reference/ftp/functions/ftp-chdir.xml index 9deaf1c37..e57731e6e 100644 --- a/reference/ftp/functions/ftp-chdir.xml +++ b/reference/ftp/functions/ftp-chdir.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-connect.xml b/reference/ftp/functions/ftp-connect.xml index a52b2b729..c38abb54f 100644 --- a/reference/ftp/functions/ftp-connect.xml +++ b/reference/ftp/functions/ftp-connect.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-exec.xml b/reference/ftp/functions/ftp-exec.xml index 950db2018..aa8ddc505 100644 --- a/reference/ftp/functions/ftp-exec.xml +++ b/reference/ftp/functions/ftp-exec.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-fget.xml b/reference/ftp/functions/ftp-fget.xml index e9566bc84..22f8ff1d7 100644 --- a/reference/ftp/functions/ftp-fget.xml +++ b/reference/ftp/functions/ftp-fget.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-fput.xml b/reference/ftp/functions/ftp-fput.xml index 59ec3a4e7..eae1f5ee0 100644 --- a/reference/ftp/functions/ftp-fput.xml +++ b/reference/ftp/functions/ftp-fput.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-get-option.xml b/reference/ftp/functions/ftp-get-option.xml index 3e7d74ade..8fee27064 100644 --- a/reference/ftp/functions/ftp-get-option.xml +++ b/reference/ftp/functions/ftp-get-option.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-get.xml b/reference/ftp/functions/ftp-get.xml index 28b3b220f..3652bae31 100644 --- a/reference/ftp/functions/ftp-get.xml +++ b/reference/ftp/functions/ftp-get.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-login.xml b/reference/ftp/functions/ftp-login.xml index cc00a648b..58707ccbe 100644 --- a/reference/ftp/functions/ftp-login.xml +++ b/reference/ftp/functions/ftp-login.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-mdtm.xml b/reference/ftp/functions/ftp-mdtm.xml index aeed76036..b5b4b2472 100644 --- a/reference/ftp/functions/ftp-mdtm.xml +++ b/reference/ftp/functions/ftp-mdtm.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-mkdir.xml b/reference/ftp/functions/ftp-mkdir.xml index 3afdbe390..618d126b1 100644 --- a/reference/ftp/functions/ftp-mkdir.xml +++ b/reference/ftp/functions/ftp-mkdir.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-nb-continue.xml b/reference/ftp/functions/ftp-nb-continue.xml index f12088023..c1b2cc55e 100644 --- a/reference/ftp/functions/ftp-nb-continue.xml +++ b/reference/ftp/functions/ftp-nb-continue.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-nb-fget.xml b/reference/ftp/functions/ftp-nb-fget.xml index 355469396..6980dfae1 100644 --- a/reference/ftp/functions/ftp-nb-fget.xml +++ b/reference/ftp/functions/ftp-nb-fget.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-nb-fput.xml b/reference/ftp/functions/ftp-nb-fput.xml index 611fc8e28..08e37c9ab 100644 --- a/reference/ftp/functions/ftp-nb-fput.xml +++ b/reference/ftp/functions/ftp-nb-fput.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-nb-get.xml b/reference/ftp/functions/ftp-nb-get.xml index 90e6bcf14..66f946ec6 100644 --- a/reference/ftp/functions/ftp-nb-get.xml +++ b/reference/ftp/functions/ftp-nb-get.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-nb-put.xml b/reference/ftp/functions/ftp-nb-put.xml index b078a1eb6..28dd59759 100644 --- a/reference/ftp/functions/ftp-nb-put.xml +++ b/reference/ftp/functions/ftp-nb-put.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-nlist.xml b/reference/ftp/functions/ftp-nlist.xml index e8bb94378..a0cc28308 100644 --- a/reference/ftp/functions/ftp-nlist.xml +++ b/reference/ftp/functions/ftp-nlist.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-pasv.xml b/reference/ftp/functions/ftp-pasv.xml index b67d9ff3b..e3cdc089f 100644 --- a/reference/ftp/functions/ftp-pasv.xml +++ b/reference/ftp/functions/ftp-pasv.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-put.xml b/reference/ftp/functions/ftp-put.xml index 80886cedc..764075fc4 100644 --- a/reference/ftp/functions/ftp-put.xml +++ b/reference/ftp/functions/ftp-put.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-pwd.xml b/reference/ftp/functions/ftp-pwd.xml index b690ebb8a..3781c32cf 100644 --- a/reference/ftp/functions/ftp-pwd.xml +++ b/reference/ftp/functions/ftp-pwd.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-raw.xml b/reference/ftp/functions/ftp-raw.xml index d22c70f5c..49ea83cbd 100644 --- a/reference/ftp/functions/ftp-raw.xml +++ b/reference/ftp/functions/ftp-raw.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-rawlist.xml b/reference/ftp/functions/ftp-rawlist.xml index 7f81bdd34..f466f9bb8 100644 --- a/reference/ftp/functions/ftp-rawlist.xml +++ b/reference/ftp/functions/ftp-rawlist.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-rename.xml b/reference/ftp/functions/ftp-rename.xml index 5923d9702..ab8cada5a 100644 --- a/reference/ftp/functions/ftp-rename.xml +++ b/reference/ftp/functions/ftp-rename.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-rmdir.xml b/reference/ftp/functions/ftp-rmdir.xml index 9f8cf2fa7..3c464737d 100644 --- a/reference/ftp/functions/ftp-rmdir.xml +++ b/reference/ftp/functions/ftp-rmdir.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-set-option.xml b/reference/ftp/functions/ftp-set-option.xml index f7f1c6712..2ff456080 100644 --- a/reference/ftp/functions/ftp-set-option.xml +++ b/reference/ftp/functions/ftp-set-option.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-site.xml b/reference/ftp/functions/ftp-site.xml index d284bbe9e..882a0eb19 100644 --- a/reference/ftp/functions/ftp-site.xml +++ b/reference/ftp/functions/ftp-site.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-size.xml b/reference/ftp/functions/ftp-size.xml index 10a0f1370..17cef6b2e 100644 --- a/reference/ftp/functions/ftp-size.xml +++ b/reference/ftp/functions/ftp-size.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-ssl-connect.xml b/reference/ftp/functions/ftp-ssl-connect.xml index 67e35dc44..67cd05020 100644 --- a/reference/ftp/functions/ftp-ssl-connect.xml +++ b/reference/ftp/functions/ftp-ssl-connect.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/ftp/functions/ftp-systype.xml b/reference/ftp/functions/ftp-systype.xml index f3e5e5f3c..4660e327b 100644 --- a/reference/ftp/functions/ftp-systype.xml +++ b/reference/ftp/functions/ftp-systype.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-gcdext.xml b/reference/gmp/functions/gmp-gcdext.xml index 96ffc7021..f75558a92 100644 --- a/reference/gmp/functions/gmp-gcdext.xml +++ b/reference/gmp/functions/gmp-gcdext.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-hamdist.xml b/reference/gmp/functions/gmp-hamdist.xml index 289ff4c83..e0512e9b7 100644 --- a/reference/gmp/functions/gmp-hamdist.xml +++ b/reference/gmp/functions/gmp-hamdist.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-intval.xml b/reference/gmp/functions/gmp-intval.xml index 20aeb8e3c..1ff15eca5 100644 --- a/reference/gmp/functions/gmp-intval.xml +++ b/reference/gmp/functions/gmp-intval.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-invert.xml b/reference/gmp/functions/gmp-invert.xml index 320bb0a33..428137704 100644 --- a/reference/gmp/functions/gmp-invert.xml +++ b/reference/gmp/functions/gmp-invert.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-jacobi.xml b/reference/gmp/functions/gmp-jacobi.xml index ec2c875d8..b3a4c5df5 100644 --- a/reference/gmp/functions/gmp-jacobi.xml +++ b/reference/gmp/functions/gmp-jacobi.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-legendre.xml b/reference/gmp/functions/gmp-legendre.xml index 9d3ef2079..e92e2981c 100644 --- a/reference/gmp/functions/gmp-legendre.xml +++ b/reference/gmp/functions/gmp-legendre.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-mod.xml b/reference/gmp/functions/gmp-mod.xml index 4f55d543d..63c726fae 100644 --- a/reference/gmp/functions/gmp-mod.xml +++ b/reference/gmp/functions/gmp-mod.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-mul.xml b/reference/gmp/functions/gmp-mul.xml index b17d24bc3..b27e56660 100644 --- a/reference/gmp/functions/gmp-mul.xml +++ b/reference/gmp/functions/gmp-mul.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-neg.xml b/reference/gmp/functions/gmp-neg.xml index 854898624..2d4116b6a 100644 --- a/reference/gmp/functions/gmp-neg.xml +++ b/reference/gmp/functions/gmp-neg.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-or.xml b/reference/gmp/functions/gmp-or.xml index f9b3cd5d3..f5b1051b2 100644 --- a/reference/gmp/functions/gmp-or.xml +++ b/reference/gmp/functions/gmp-or.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-perfect-square.xml b/reference/gmp/functions/gmp-perfect-square.xml index 6c04baed4..c44f466fd 100644 --- a/reference/gmp/functions/gmp-perfect-square.xml +++ b/reference/gmp/functions/gmp-perfect-square.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-popcount.xml b/reference/gmp/functions/gmp-popcount.xml index 952b67049..d4e222381 100644 --- a/reference/gmp/functions/gmp-popcount.xml +++ b/reference/gmp/functions/gmp-popcount.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-pow.xml b/reference/gmp/functions/gmp-pow.xml index cc108d004..fd60def60 100644 --- a/reference/gmp/functions/gmp-pow.xml +++ b/reference/gmp/functions/gmp-pow.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-powm.xml b/reference/gmp/functions/gmp-powm.xml index f987fc7f7..ce2e5e30e 100644 --- a/reference/gmp/functions/gmp-powm.xml +++ b/reference/gmp/functions/gmp-powm.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-prob-prime.xml b/reference/gmp/functions/gmp-prob-prime.xml index 680fa8e94..97782ff3e 100644 --- a/reference/gmp/functions/gmp-prob-prime.xml +++ b/reference/gmp/functions/gmp-prob-prime.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-random.xml b/reference/gmp/functions/gmp-random.xml index c2ce31af8..b28316669 100644 --- a/reference/gmp/functions/gmp-random.xml +++ b/reference/gmp/functions/gmp-random.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-scan0.xml b/reference/gmp/functions/gmp-scan0.xml index cc32fca4f..1560fdcdf 100644 --- a/reference/gmp/functions/gmp-scan0.xml +++ b/reference/gmp/functions/gmp-scan0.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-scan1.xml b/reference/gmp/functions/gmp-scan1.xml index 87719c036..71bd2fb96 100644 --- a/reference/gmp/functions/gmp-scan1.xml +++ b/reference/gmp/functions/gmp-scan1.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-setbit.xml b/reference/gmp/functions/gmp-setbit.xml index 89845092b..95d8670f4 100644 --- a/reference/gmp/functions/gmp-setbit.xml +++ b/reference/gmp/functions/gmp-setbit.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-sign.xml b/reference/gmp/functions/gmp-sign.xml index 1c5cef4ca..de3058f04 100644 --- a/reference/gmp/functions/gmp-sign.xml +++ b/reference/gmp/functions/gmp-sign.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-sqrt.xml b/reference/gmp/functions/gmp-sqrt.xml index 2e5d23565..b3c1eec72 100644 --- a/reference/gmp/functions/gmp-sqrt.xml +++ b/reference/gmp/functions/gmp-sqrt.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-sqrtrem.xml b/reference/gmp/functions/gmp-sqrtrem.xml index b4f62ae9f..4ae8e682d 100644 --- a/reference/gmp/functions/gmp-sqrtrem.xml +++ b/reference/gmp/functions/gmp-sqrtrem.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-strval.xml b/reference/gmp/functions/gmp-strval.xml index ce61b1fb9..c566c099a 100644 --- a/reference/gmp/functions/gmp-strval.xml +++ b/reference/gmp/functions/gmp-strval.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-sub.xml b/reference/gmp/functions/gmp-sub.xml index 04d4eb1f3..dc007c58c 100644 --- a/reference/gmp/functions/gmp-sub.xml +++ b/reference/gmp/functions/gmp-sub.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/gmp/functions/gmp-xor.xml b/reference/gmp/functions/gmp-xor.xml index d2d69f785..479b878c9 100644 --- a/reference/gmp/functions/gmp-xor.xml +++ b/reference/gmp/functions/gmp-xor.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/info/functions/assert-options.xml b/reference/info/functions/assert-options.xml index 55b7dac47..7356a2f5c 100644 --- a/reference/info/functions/assert-options.xml +++ b/reference/info/functions/assert-options.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/extension-loaded.xml b/reference/info/functions/extension-loaded.xml index 8cb6292a2..72b21c8a9 100644 --- a/reference/info/functions/extension-loaded.xml +++ b/reference/info/functions/extension-loaded.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/get-cfg-var.xml b/reference/info/functions/get-cfg-var.xml index 4b2de9b28..2e3ab730a 100644 --- a/reference/info/functions/get-cfg-var.xml +++ b/reference/info/functions/get-cfg-var.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/get-current-user.xml b/reference/info/functions/get-current-user.xml index 085402e32..eb9874380 100644 --- a/reference/info/functions/get-current-user.xml +++ b/reference/info/functions/get-current-user.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/get-defined-constants.xml b/reference/info/functions/get-defined-constants.xml index 4b08a7788..4f08424b3 100644 --- a/reference/info/functions/get-defined-constants.xml +++ b/reference/info/functions/get-defined-constants.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/get-extension-funcs.xml b/reference/info/functions/get-extension-funcs.xml index ddd270b58..315abedea 100644 --- a/reference/info/functions/get-extension-funcs.xml +++ b/reference/info/functions/get-extension-funcs.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/get-include-path.xml b/reference/info/functions/get-include-path.xml index 84ce9bedb..daa3f6c2b 100644 --- a/reference/info/functions/get-include-path.xml +++ b/reference/info/functions/get-include-path.xml @@ -1,5 +1,5 @@ - + get_include_path diff --git a/reference/info/functions/get-included-files.xml b/reference/info/functions/get-included-files.xml index 7525a4599..86cd7d8ef 100644 --- a/reference/info/functions/get-included-files.xml +++ b/reference/info/functions/get-included-files.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/get-loaded-extensions.xml b/reference/info/functions/get-loaded-extensions.xml index 8f4a6a6b8..cb801b5b3 100644 --- a/reference/info/functions/get-loaded-extensions.xml +++ b/reference/info/functions/get-loaded-extensions.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/getlastmod.xml b/reference/info/functions/getlastmod.xml index 534deba51..d5c5d89ab 100644 --- a/reference/info/functions/getlastmod.xml +++ b/reference/info/functions/getlastmod.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/getmygid.xml b/reference/info/functions/getmygid.xml index e8accc04a..618fc62e3 100644 --- a/reference/info/functions/getmygid.xml +++ b/reference/info/functions/getmygid.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/getmyinode.xml b/reference/info/functions/getmyinode.xml index 4bead978a..d74e9827a 100644 --- a/reference/info/functions/getmyinode.xml +++ b/reference/info/functions/getmyinode.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/getmypid.xml b/reference/info/functions/getmypid.xml index 43715c574..33a81d4d8 100644 --- a/reference/info/functions/getmypid.xml +++ b/reference/info/functions/getmypid.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/getmyuid.xml b/reference/info/functions/getmyuid.xml index 0e7a35ca7..67b8972d6 100644 --- a/reference/info/functions/getmyuid.xml +++ b/reference/info/functions/getmyuid.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/getopt.xml b/reference/info/functions/getopt.xml index bdaee1845..873fffdd0 100644 --- a/reference/info/functions/getopt.xml +++ b/reference/info/functions/getopt.xml @@ -1,5 +1,5 @@ - + getopt diff --git a/reference/info/functions/getrusage.xml b/reference/info/functions/getrusage.xml index 93475660a..c4c5938ee 100644 --- a/reference/info/functions/getrusage.xml +++ b/reference/info/functions/getrusage.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/ini-get-all.xml b/reference/info/functions/ini-get-all.xml index 31aa3eec2..ab44726ca 100644 --- a/reference/info/functions/ini-get-all.xml +++ b/reference/info/functions/ini-get-all.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/ini-get.xml b/reference/info/functions/ini-get.xml index 708eea238..e03a463c1 100644 --- a/reference/info/functions/ini-get.xml +++ b/reference/info/functions/ini-get.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/ini-restore.xml b/reference/info/functions/ini-restore.xml index 9cf6a8f61..7c534774e 100644 --- a/reference/info/functions/ini-restore.xml +++ b/reference/info/functions/ini-restore.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/ini-set.xml b/reference/info/functions/ini-set.xml index 9ac73098b..63aea5af5 100644 --- a/reference/info/functions/ini-set.xml +++ b/reference/info/functions/ini-set.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/memory-get-usage.xml b/reference/info/functions/memory-get-usage.xml index e00bb93a2..5e08a5617 100644 --- a/reference/info/functions/memory-get-usage.xml +++ b/reference/info/functions/memory-get-usage.xml @@ -1,5 +1,5 @@ - + memory_get_usage diff --git a/reference/info/functions/php-ini-scanned-files.xml b/reference/info/functions/php-ini-scanned-files.xml index 28ae2ad53..493259914 100644 --- a/reference/info/functions/php-ini-scanned-files.xml +++ b/reference/info/functions/php-ini-scanned-files.xml @@ -1,5 +1,5 @@ - + php_ini_scanned_files diff --git a/reference/info/functions/php-sapi-name.xml b/reference/info/functions/php-sapi-name.xml index 2ae8731bd..843314ada 100644 --- a/reference/info/functions/php-sapi-name.xml +++ b/reference/info/functions/php-sapi-name.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/php-uname.xml b/reference/info/functions/php-uname.xml index 150fed6d0..c732d14a2 100644 --- a/reference/info/functions/php-uname.xml +++ b/reference/info/functions/php-uname.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/phpinfo.xml b/reference/info/functions/phpinfo.xml index 1d11b20e3..89e49fc9b 100644 --- a/reference/info/functions/phpinfo.xml +++ b/reference/info/functions/phpinfo.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/phpversion.xml b/reference/info/functions/phpversion.xml index 9fd9f37c6..5a2458c1b 100644 --- a/reference/info/functions/phpversion.xml +++ b/reference/info/functions/phpversion.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/restore-include-path.xml b/reference/info/functions/restore-include-path.xml index f248c04e8..e83d788fe 100644 --- a/reference/info/functions/restore-include-path.xml +++ b/reference/info/functions/restore-include-path.xml @@ -1,5 +1,5 @@ - + restore_include_path diff --git a/reference/info/functions/set-include-path.xml b/reference/info/functions/set-include-path.xml index dd57bb80d..44a86f4b9 100644 --- a/reference/info/functions/set-include-path.xml +++ b/reference/info/functions/set-include-path.xml @@ -1,5 +1,5 @@ - + set_include_path diff --git a/reference/info/functions/version-compare.xml b/reference/info/functions/version-compare.xml index 8f7a9b455..83a242123 100644 --- a/reference/info/functions/version-compare.xml +++ b/reference/info/functions/version-compare.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/info/functions/zend-version.xml b/reference/info/functions/zend-version.xml index d4abc08dd..9db54a0ae 100644 --- a/reference/info/functions/zend-version.xml +++ b/reference/info/functions/zend-version.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/mail/functions/ezmlm-hash.xml b/reference/mail/functions/ezmlm-hash.xml index 2b9c6217f..8aef96135 100644 --- a/reference/mail/functions/ezmlm-hash.xml +++ b/reference/mail/functions/ezmlm-hash.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/math/functions/abs.xml b/reference/math/functions/abs.xml index 942ad2e67..92af3204d 100644 --- a/reference/math/functions/abs.xml +++ b/reference/math/functions/abs.xml @@ -1,5 +1,5 @@ - + abs diff --git a/reference/math/functions/acos.xml b/reference/math/functions/acos.xml index f38f10245..779a7dfbb 100644 --- a/reference/math/functions/acos.xml +++ b/reference/math/functions/acos.xml @@ -1,5 +1,5 @@ - + acos diff --git a/reference/math/functions/acosh.xml b/reference/math/functions/acosh.xml index f2ecb3e55..945e2576b 100644 --- a/reference/math/functions/acosh.xml +++ b/reference/math/functions/acosh.xml @@ -1,5 +1,5 @@ - + acosh diff --git a/reference/math/functions/asin.xml b/reference/math/functions/asin.xml index 058bd3dcc..441a9faa1 100644 --- a/reference/math/functions/asin.xml +++ b/reference/math/functions/asin.xml @@ -1,5 +1,5 @@ - + asin diff --git a/reference/math/functions/asinh.xml b/reference/math/functions/asinh.xml index a848a7ad5..3cb78566d 100644 --- a/reference/math/functions/asinh.xml +++ b/reference/math/functions/asinh.xml @@ -1,5 +1,5 @@ - + asinh diff --git a/reference/math/functions/atan.xml b/reference/math/functions/atan.xml index cb7972419..ad71aefef 100644 --- a/reference/math/functions/atan.xml +++ b/reference/math/functions/atan.xml @@ -1,5 +1,5 @@ - + atan diff --git a/reference/math/functions/atan2.xml b/reference/math/functions/atan2.xml index e5b90896c..54875a1c6 100644 --- a/reference/math/functions/atan2.xml +++ b/reference/math/functions/atan2.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/math/functions/atanh.xml b/reference/math/functions/atanh.xml index 2e1950c49..a7abaada8 100644 --- a/reference/math/functions/atanh.xml +++ b/reference/math/functions/atanh.xml @@ -1,5 +1,5 @@ - + atanh diff --git a/reference/math/functions/base-convert.xml b/reference/math/functions/base-convert.xml index 2df704a65..994259726 100644 --- a/reference/math/functions/base-convert.xml +++ b/reference/math/functions/base-convert.xml @@ -1,5 +1,5 @@ - + base_convert diff --git a/reference/math/functions/bindec.xml b/reference/math/functions/bindec.xml index 39d5ee40b..a41ab9d17 100644 --- a/reference/math/functions/bindec.xml +++ b/reference/math/functions/bindec.xml @@ -1,5 +1,5 @@ - + bindec diff --git a/reference/math/functions/ceil.xml b/reference/math/functions/ceil.xml index 9f26afc8d..bf46684cd 100644 --- a/reference/math/functions/ceil.xml +++ b/reference/math/functions/ceil.xml @@ -1,5 +1,5 @@ - + ceil diff --git a/reference/math/functions/cos.xml b/reference/math/functions/cos.xml index c2c7e7489..a910b88a8 100644 --- a/reference/math/functions/cos.xml +++ b/reference/math/functions/cos.xml @@ -1,5 +1,5 @@ - + cos diff --git a/reference/math/functions/cosh.xml b/reference/math/functions/cosh.xml index 2e31ea0f6..255c1d30d 100644 --- a/reference/math/functions/cosh.xml +++ b/reference/math/functions/cosh.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/math/functions/decbin.xml b/reference/math/functions/decbin.xml index d369fe1fc..6be5f8ba3 100644 --- a/reference/math/functions/decbin.xml +++ b/reference/math/functions/decbin.xml @@ -1,5 +1,5 @@ - + decbin diff --git a/reference/math/functions/dechex.xml b/reference/math/functions/dechex.xml index 7321f3cdd..a1ff41aa7 100644 --- a/reference/math/functions/dechex.xml +++ b/reference/math/functions/dechex.xml @@ -1,5 +1,5 @@ - + dechex diff --git a/reference/math/functions/decoct.xml b/reference/math/functions/decoct.xml index 5d106db5b..d065e89f7 100644 --- a/reference/math/functions/decoct.xml +++ b/reference/math/functions/decoct.xml @@ -1,5 +1,5 @@ - + decoct diff --git a/reference/math/functions/deg2rad.xml b/reference/math/functions/deg2rad.xml index baf632ce8..c1659532f 100644 --- a/reference/math/functions/deg2rad.xml +++ b/reference/math/functions/deg2rad.xml @@ -1,5 +1,5 @@ - + deg2rad diff --git a/reference/math/functions/exp.xml b/reference/math/functions/exp.xml index 40932d7e2..4bf646127 100644 --- a/reference/math/functions/exp.xml +++ b/reference/math/functions/exp.xml @@ -1,5 +1,5 @@ - + exp diff --git a/reference/math/functions/expm1.xml b/reference/math/functions/expm1.xml index f568763a2..2f4715253 100644 --- a/reference/math/functions/expm1.xml +++ b/reference/math/functions/expm1.xml @@ -1,5 +1,5 @@ - + expm1 diff --git a/reference/math/functions/floor.xml b/reference/math/functions/floor.xml index 5d4925b25..6cc72d784 100644 --- a/reference/math/functions/floor.xml +++ b/reference/math/functions/floor.xml @@ -1,5 +1,5 @@ - + floor diff --git a/reference/math/functions/hexdec.xml b/reference/math/functions/hexdec.xml index 8cecbbb56..33ef973a8 100644 --- a/reference/math/functions/hexdec.xml +++ b/reference/math/functions/hexdec.xml @@ -1,5 +1,5 @@ - + hexdec diff --git a/reference/math/functions/hypot.xml b/reference/math/functions/hypot.xml index 5df510909..e288eaaab 100644 --- a/reference/math/functions/hypot.xml +++ b/reference/math/functions/hypot.xml @@ -1,5 +1,5 @@ - + hypot diff --git a/reference/math/functions/is-finite.xml b/reference/math/functions/is-finite.xml index 1995b3f68..97a6b6a15 100644 --- a/reference/math/functions/is-finite.xml +++ b/reference/math/functions/is-finite.xml @@ -1,5 +1,5 @@ - + is_finite diff --git a/reference/math/functions/is-infinite.xml b/reference/math/functions/is-infinite.xml index cffc3a35f..de287eb35 100644 --- a/reference/math/functions/is-infinite.xml +++ b/reference/math/functions/is-infinite.xml @@ -1,5 +1,5 @@ - + is_infinite diff --git a/reference/math/functions/is-nan.xml b/reference/math/functions/is-nan.xml index 647acc203..a279f30d2 100644 --- a/reference/math/functions/is-nan.xml +++ b/reference/math/functions/is-nan.xml @@ -1,5 +1,5 @@ - + is_nan diff --git a/reference/math/functions/log.xml b/reference/math/functions/log.xml index 11a52e4d3..2c3f5397e 100644 --- a/reference/math/functions/log.xml +++ b/reference/math/functions/log.xml @@ -1,5 +1,5 @@ - + log diff --git a/reference/math/functions/log10.xml b/reference/math/functions/log10.xml index c9365c793..54b581e53 100644 --- a/reference/math/functions/log10.xml +++ b/reference/math/functions/log10.xml @@ -1,5 +1,5 @@ - + log10 diff --git a/reference/math/functions/log1p.xml b/reference/math/functions/log1p.xml index bbad442a2..7ebf62ab5 100644 --- a/reference/math/functions/log1p.xml +++ b/reference/math/functions/log1p.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/math/functions/max.xml b/reference/math/functions/max.xml index d03c10cb2..8ece1271e 100644 --- a/reference/math/functions/max.xml +++ b/reference/math/functions/max.xml @@ -1,5 +1,5 @@ - + max diff --git a/reference/math/functions/min.xml b/reference/math/functions/min.xml index 288858f70..0151ac501 100644 --- a/reference/math/functions/min.xml +++ b/reference/math/functions/min.xml @@ -1,5 +1,5 @@ - + min diff --git a/reference/math/functions/octdec.xml b/reference/math/functions/octdec.xml index a2c55c21a..d7cc66f1b 100644 --- a/reference/math/functions/octdec.xml +++ b/reference/math/functions/octdec.xml @@ -1,5 +1,5 @@ - + octdec diff --git a/reference/math/functions/pi.xml b/reference/math/functions/pi.xml index ad1cadc9f..cb49c02af 100644 --- a/reference/math/functions/pi.xml +++ b/reference/math/functions/pi.xml @@ -1,5 +1,5 @@ - + pi diff --git a/reference/math/functions/pow.xml b/reference/math/functions/pow.xml index 332e763d4..9343bbb12 100644 --- a/reference/math/functions/pow.xml +++ b/reference/math/functions/pow.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/math/functions/rad2deg.xml b/reference/math/functions/rad2deg.xml index d08e6855a..74bfcdc22 100644 --- a/reference/math/functions/rad2deg.xml +++ b/reference/math/functions/rad2deg.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/math/functions/sin.xml b/reference/math/functions/sin.xml index ab47d2c15..3795823c3 100644 --- a/reference/math/functions/sin.xml +++ b/reference/math/functions/sin.xml @@ -1,5 +1,5 @@ - + sin diff --git a/reference/math/functions/sinh.xml b/reference/math/functions/sinh.xml index 346c25a34..5a0790817 100644 --- a/reference/math/functions/sinh.xml +++ b/reference/math/functions/sinh.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/math/functions/sqrt.xml b/reference/math/functions/sqrt.xml index ef358cd04..4e6189567 100644 --- a/reference/math/functions/sqrt.xml +++ b/reference/math/functions/sqrt.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/math/functions/tan.xml b/reference/math/functions/tan.xml index 5c4573540..a31d0fcff 100644 --- a/reference/math/functions/tan.xml +++ b/reference/math/functions/tan.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/math/functions/tanh.xml b/reference/math/functions/tanh.xml index 687bdbfdd..2e1022651 100644 --- a/reference/math/functions/tanh.xml +++ b/reference/math/functions/tanh.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/constants.xml b/reference/network/constants.xml index fd72de4f7..39c404faa 100644 --- a/reference/network/constants.xml +++ b/reference/network/constants.xml @@ -1,5 +1,5 @@ - + &reftitle.constants; &extension.constants.core; diff --git a/reference/network/functions/checkdnsrr.xml b/reference/network/functions/checkdnsrr.xml index ac6241db9..49fce9627 100644 --- a/reference/network/functions/checkdnsrr.xml +++ b/reference/network/functions/checkdnsrr.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/closelog.xml b/reference/network/functions/closelog.xml index 9c08ba806..32f63a1d4 100644 --- a/reference/network/functions/closelog.xml +++ b/reference/network/functions/closelog.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/fsockopen.xml b/reference/network/functions/fsockopen.xml index 6f83a7d8e..92b0e9b74 100644 --- a/reference/network/functions/fsockopen.xml +++ b/reference/network/functions/fsockopen.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/gethostbyaddr.xml b/reference/network/functions/gethostbyaddr.xml index dce0101fc..57571b19a 100644 --- a/reference/network/functions/gethostbyaddr.xml +++ b/reference/network/functions/gethostbyaddr.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/gethostbyname.xml b/reference/network/functions/gethostbyname.xml index 056f1e0a6..5a1d6b3a9 100644 --- a/reference/network/functions/gethostbyname.xml +++ b/reference/network/functions/gethostbyname.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/gethostbynamel.xml b/reference/network/functions/gethostbynamel.xml index fafb35759..d1d94e14c 100644 --- a/reference/network/functions/gethostbynamel.xml +++ b/reference/network/functions/gethostbynamel.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/getmxrr.xml b/reference/network/functions/getmxrr.xml index 7ae480f5f..847faa502 100644 --- a/reference/network/functions/getmxrr.xml +++ b/reference/network/functions/getmxrr.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/getprotobyname.xml b/reference/network/functions/getprotobyname.xml index 44cc6c692..b3616d868 100644 --- a/reference/network/functions/getprotobyname.xml +++ b/reference/network/functions/getprotobyname.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/getprotobynumber.xml b/reference/network/functions/getprotobynumber.xml index 4929ec641..bdf3617e6 100644 --- a/reference/network/functions/getprotobynumber.xml +++ b/reference/network/functions/getprotobynumber.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/getservbyname.xml b/reference/network/functions/getservbyname.xml index a87ef72f6..b61330e45 100644 --- a/reference/network/functions/getservbyname.xml +++ b/reference/network/functions/getservbyname.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/getservbyport.xml b/reference/network/functions/getservbyport.xml index eba18c605..1e57bc071 100644 --- a/reference/network/functions/getservbyport.xml +++ b/reference/network/functions/getservbyport.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/ip2long.xml b/reference/network/functions/ip2long.xml index 47aa3910e..4fdd436bb 100644 --- a/reference/network/functions/ip2long.xml +++ b/reference/network/functions/ip2long.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/long2ip.xml b/reference/network/functions/long2ip.xml index a5a113d19..c230f8c6c 100644 --- a/reference/network/functions/long2ip.xml +++ b/reference/network/functions/long2ip.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/openlog.xml b/reference/network/functions/openlog.xml index 226132ce8..9e6d72ff4 100644 --- a/reference/network/functions/openlog.xml +++ b/reference/network/functions/openlog.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/pfsockopen.xml b/reference/network/functions/pfsockopen.xml index 8ccbfac6c..5ceff3cc3 100644 --- a/reference/network/functions/pfsockopen.xml +++ b/reference/network/functions/pfsockopen.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/network/functions/syslog.xml b/reference/network/functions/syslog.xml index bc3f52edb..59ae39396 100644 --- a/reference/network/functions/syslog.xml +++ b/reference/network/functions/syslog.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pcre/functions/preg-grep.xml b/reference/pcre/functions/preg-grep.xml index 92d0df05f..9b4ab4865 100644 --- a/reference/pcre/functions/preg-grep.xml +++ b/reference/pcre/functions/preg-grep.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pcre/functions/preg-match-all.xml b/reference/pcre/functions/preg-match-all.xml index d27c44278..5ea433fb3 100644 --- a/reference/pcre/functions/preg-match-all.xml +++ b/reference/pcre/functions/preg-match-all.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pcre/functions/preg-match.xml b/reference/pcre/functions/preg-match.xml index fb1169661..04947999a 100644 --- a/reference/pcre/functions/preg-match.xml +++ b/reference/pcre/functions/preg-match.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pcre/functions/preg-quote.xml b/reference/pcre/functions/preg-quote.xml index 793c93c85..31d102d93 100644 --- a/reference/pcre/functions/preg-quote.xml +++ b/reference/pcre/functions/preg-quote.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pcre/functions/preg-replace.xml b/reference/pcre/functions/preg-replace.xml index 993097b0d..9a9180ebd 100644 --- a/reference/pcre/functions/preg-replace.xml +++ b/reference/pcre/functions/preg-replace.xml @@ -1,6 +1,6 @@ - + preg_replace diff --git a/reference/pcre/functions/preg-split.xml b/reference/pcre/functions/preg-split.xml index ac527a3e6..1ab016f60 100644 --- a/reference/pcre/functions/preg-split.xml +++ b/reference/pcre/functions/preg-split.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pcre/pattern.modifiers.xml b/reference/pcre/pattern.modifiers.xml index 40a5fe0d5..1422b1810 100644 --- a/reference/pcre/pattern.modifiers.xml +++ b/reference/pcre/pattern.modifiers.xml @@ -1,5 +1,5 @@ - +
Modificatori di criterio (Pattern Modifiers) diff --git a/reference/pgsql/functions/pg-affected-rows.xml b/reference/pgsql/functions/pg-affected-rows.xml index 092143ec5..a5ae5c954 100644 --- a/reference/pgsql/functions/pg-affected-rows.xml +++ b/reference/pgsql/functions/pg-affected-rows.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-cancel-query.xml b/reference/pgsql/functions/pg-cancel-query.xml index 3b03e0509..9f99c9975 100644 --- a/reference/pgsql/functions/pg-cancel-query.xml +++ b/reference/pgsql/functions/pg-cancel-query.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-client-encoding.xml b/reference/pgsql/functions/pg-client-encoding.xml index 2ba30bfd7..9a7a25222 100644 --- a/reference/pgsql/functions/pg-client-encoding.xml +++ b/reference/pgsql/functions/pg-client-encoding.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-close.xml b/reference/pgsql/functions/pg-close.xml index 2c79c237b..e6e5ba542 100644 --- a/reference/pgsql/functions/pg-close.xml +++ b/reference/pgsql/functions/pg-close.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-connect.xml b/reference/pgsql/functions/pg-connect.xml index e7ee7b271..2078ca64e 100644 --- a/reference/pgsql/functions/pg-connect.xml +++ b/reference/pgsql/functions/pg-connect.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-connection-busy.xml b/reference/pgsql/functions/pg-connection-busy.xml index 4e3962c43..c7e0d39a2 100644 --- a/reference/pgsql/functions/pg-connection-busy.xml +++ b/reference/pgsql/functions/pg-connection-busy.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-connection-reset.xml b/reference/pgsql/functions/pg-connection-reset.xml index debd6a121..04df8bcf0 100644 --- a/reference/pgsql/functions/pg-connection-reset.xml +++ b/reference/pgsql/functions/pg-connection-reset.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-connection-status.xml b/reference/pgsql/functions/pg-connection-status.xml index 82aee61e0..ea1fc9c1d 100644 --- a/reference/pgsql/functions/pg-connection-status.xml +++ b/reference/pgsql/functions/pg-connection-status.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-convert.xml b/reference/pgsql/functions/pg-convert.xml index 29437cdf4..b5a9899b5 100644 --- a/reference/pgsql/functions/pg-convert.xml +++ b/reference/pgsql/functions/pg-convert.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-copy-from.xml b/reference/pgsql/functions/pg-copy-from.xml index f8c6bef32..3eb52494c 100644 --- a/reference/pgsql/functions/pg-copy-from.xml +++ b/reference/pgsql/functions/pg-copy-from.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-copy-to.xml b/reference/pgsql/functions/pg-copy-to.xml index 692cc7c0e..25173d8ea 100644 --- a/reference/pgsql/functions/pg-copy-to.xml +++ b/reference/pgsql/functions/pg-copy-to.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-dbname.xml b/reference/pgsql/functions/pg-dbname.xml index f2ce51d90..7352deeb5 100644 --- a/reference/pgsql/functions/pg-dbname.xml +++ b/reference/pgsql/functions/pg-dbname.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-delete.xml b/reference/pgsql/functions/pg-delete.xml index d3bb98867..0acc30e09 100644 --- a/reference/pgsql/functions/pg-delete.xml +++ b/reference/pgsql/functions/pg-delete.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-end-copy.xml b/reference/pgsql/functions/pg-end-copy.xml index b1bddee02..fe559f054 100644 --- a/reference/pgsql/functions/pg-end-copy.xml +++ b/reference/pgsql/functions/pg-end-copy.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-escape-bytea.xml b/reference/pgsql/functions/pg-escape-bytea.xml index 0fec08dd7..09ccf380d 100644 --- a/reference/pgsql/functions/pg-escape-bytea.xml +++ b/reference/pgsql/functions/pg-escape-bytea.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-escape-string.xml b/reference/pgsql/functions/pg-escape-string.xml index fa4251c24..156afda06 100644 --- a/reference/pgsql/functions/pg-escape-string.xml +++ b/reference/pgsql/functions/pg-escape-string.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-fetch-all.xml b/reference/pgsql/functions/pg-fetch-all.xml index 706aca6f6..6733327b6 100644 --- a/reference/pgsql/functions/pg-fetch-all.xml +++ b/reference/pgsql/functions/pg-fetch-all.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-fetch-array.xml b/reference/pgsql/functions/pg-fetch-array.xml index 8ecca4765..13ef4ea2b 100644 --- a/reference/pgsql/functions/pg-fetch-array.xml +++ b/reference/pgsql/functions/pg-fetch-array.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-fetch-object.xml b/reference/pgsql/functions/pg-fetch-object.xml index c2961eb99..d1f53d321 100644 --- a/reference/pgsql/functions/pg-fetch-object.xml +++ b/reference/pgsql/functions/pg-fetch-object.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-fetch-result.xml b/reference/pgsql/functions/pg-fetch-result.xml index 14db10817..cd4e0cdcf 100644 --- a/reference/pgsql/functions/pg-fetch-result.xml +++ b/reference/pgsql/functions/pg-fetch-result.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-fetch-row.xml b/reference/pgsql/functions/pg-fetch-row.xml index b334c4eb7..a5818edfe 100644 --- a/reference/pgsql/functions/pg-fetch-row.xml +++ b/reference/pgsql/functions/pg-fetch-row.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-field-is-null.xml b/reference/pgsql/functions/pg-field-is-null.xml index 91eeaefca..8f47efa9d 100644 --- a/reference/pgsql/functions/pg-field-is-null.xml +++ b/reference/pgsql/functions/pg-field-is-null.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-field-name.xml b/reference/pgsql/functions/pg-field-name.xml index eede28850..95f30c3da 100644 --- a/reference/pgsql/functions/pg-field-name.xml +++ b/reference/pgsql/functions/pg-field-name.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-field-num.xml b/reference/pgsql/functions/pg-field-num.xml index 6c995a6a4..53b294b30 100644 --- a/reference/pgsql/functions/pg-field-num.xml +++ b/reference/pgsql/functions/pg-field-num.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-field-prtlen.xml b/reference/pgsql/functions/pg-field-prtlen.xml index 5bb052d9d..f7654b20e 100644 --- a/reference/pgsql/functions/pg-field-prtlen.xml +++ b/reference/pgsql/functions/pg-field-prtlen.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-field-size.xml b/reference/pgsql/functions/pg-field-size.xml index 3c8450bb2..812d5defe 100644 --- a/reference/pgsql/functions/pg-field-size.xml +++ b/reference/pgsql/functions/pg-field-size.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-field-type.xml b/reference/pgsql/functions/pg-field-type.xml index 34b8f5cd7..ab3ed3b36 100644 --- a/reference/pgsql/functions/pg-field-type.xml +++ b/reference/pgsql/functions/pg-field-type.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-free-result.xml b/reference/pgsql/functions/pg-free-result.xml index 3db32e242..7a6e87977 100644 --- a/reference/pgsql/functions/pg-free-result.xml +++ b/reference/pgsql/functions/pg-free-result.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-get-result.xml b/reference/pgsql/functions/pg-get-result.xml index dede14447..4628eb901 100644 --- a/reference/pgsql/functions/pg-get-result.xml +++ b/reference/pgsql/functions/pg-get-result.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-host.xml b/reference/pgsql/functions/pg-host.xml index eae52df8e..243c42255 100644 --- a/reference/pgsql/functions/pg-host.xml +++ b/reference/pgsql/functions/pg-host.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-insert.xml b/reference/pgsql/functions/pg-insert.xml index 6cd479b72..35d14cf7c 100644 --- a/reference/pgsql/functions/pg-insert.xml +++ b/reference/pgsql/functions/pg-insert.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-last-error.xml b/reference/pgsql/functions/pg-last-error.xml index 535632d65..c6a1f77eb 100644 --- a/reference/pgsql/functions/pg-last-error.xml +++ b/reference/pgsql/functions/pg-last-error.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-last-notice.xml b/reference/pgsql/functions/pg-last-notice.xml index 770b24f44..f0853b707 100644 --- a/reference/pgsql/functions/pg-last-notice.xml +++ b/reference/pgsql/functions/pg-last-notice.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-last-oid.xml b/reference/pgsql/functions/pg-last-oid.xml index d3e0bd27c..b71b50ad0 100644 --- a/reference/pgsql/functions/pg-last-oid.xml +++ b/reference/pgsql/functions/pg-last-oid.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-lo-close.xml b/reference/pgsql/functions/pg-lo-close.xml index 319fdd33d..3d2ac56d5 100644 --- a/reference/pgsql/functions/pg-lo-close.xml +++ b/reference/pgsql/functions/pg-lo-close.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-lo-create.xml b/reference/pgsql/functions/pg-lo-create.xml index f47d118f8..5fcf82c6d 100644 --- a/reference/pgsql/functions/pg-lo-create.xml +++ b/reference/pgsql/functions/pg-lo-create.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-lo-export.xml b/reference/pgsql/functions/pg-lo-export.xml index 3126b26b7..45dcd2ce0 100644 --- a/reference/pgsql/functions/pg-lo-export.xml +++ b/reference/pgsql/functions/pg-lo-export.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-lo-open.xml b/reference/pgsql/functions/pg-lo-open.xml index f07e4c58c..38d3859a3 100644 --- a/reference/pgsql/functions/pg-lo-open.xml +++ b/reference/pgsql/functions/pg-lo-open.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-lo-read-all.xml b/reference/pgsql/functions/pg-lo-read-all.xml index a9627dad5..e2d8135f6 100644 --- a/reference/pgsql/functions/pg-lo-read-all.xml +++ b/reference/pgsql/functions/pg-lo-read-all.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-lo-read.xml b/reference/pgsql/functions/pg-lo-read.xml index f56b393e1..ee8210054 100644 --- a/reference/pgsql/functions/pg-lo-read.xml +++ b/reference/pgsql/functions/pg-lo-read.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-lo-seek.xml b/reference/pgsql/functions/pg-lo-seek.xml index af0052374..50bde959d 100644 --- a/reference/pgsql/functions/pg-lo-seek.xml +++ b/reference/pgsql/functions/pg-lo-seek.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-lo-tell.xml b/reference/pgsql/functions/pg-lo-tell.xml index 44b435e12..ee49827cc 100644 --- a/reference/pgsql/functions/pg-lo-tell.xml +++ b/reference/pgsql/functions/pg-lo-tell.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-lo-unlink.xml b/reference/pgsql/functions/pg-lo-unlink.xml index 350c7c49f..f5487457f 100644 --- a/reference/pgsql/functions/pg-lo-unlink.xml +++ b/reference/pgsql/functions/pg-lo-unlink.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-lo-write.xml b/reference/pgsql/functions/pg-lo-write.xml index 6a4198767..cf4a7a22c 100644 --- a/reference/pgsql/functions/pg-lo-write.xml +++ b/reference/pgsql/functions/pg-lo-write.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-meta-data.xml b/reference/pgsql/functions/pg-meta-data.xml index ff2b57106..aff80e1f1 100644 --- a/reference/pgsql/functions/pg-meta-data.xml +++ b/reference/pgsql/functions/pg-meta-data.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-num-fields.xml b/reference/pgsql/functions/pg-num-fields.xml index fd76dd569..de928da5e 100644 --- a/reference/pgsql/functions/pg-num-fields.xml +++ b/reference/pgsql/functions/pg-num-fields.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-num-rows.xml b/reference/pgsql/functions/pg-num-rows.xml index 61ed334a3..480589f64 100644 --- a/reference/pgsql/functions/pg-num-rows.xml +++ b/reference/pgsql/functions/pg-num-rows.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-options.xml b/reference/pgsql/functions/pg-options.xml index 693ede201..4868a33d2 100644 --- a/reference/pgsql/functions/pg-options.xml +++ b/reference/pgsql/functions/pg-options.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-pconnect.xml b/reference/pgsql/functions/pg-pconnect.xml index b58731efe..474e6d8d6 100644 --- a/reference/pgsql/functions/pg-pconnect.xml +++ b/reference/pgsql/functions/pg-pconnect.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-port.xml b/reference/pgsql/functions/pg-port.xml index 0622c7e65..6948b23c9 100644 --- a/reference/pgsql/functions/pg-port.xml +++ b/reference/pgsql/functions/pg-port.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-put-line.xml b/reference/pgsql/functions/pg-put-line.xml index ee2179ce4..a90ff65aa 100644 --- a/reference/pgsql/functions/pg-put-line.xml +++ b/reference/pgsql/functions/pg-put-line.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-query.xml b/reference/pgsql/functions/pg-query.xml index 32a6119d4..2afbd8b52 100644 --- a/reference/pgsql/functions/pg-query.xml +++ b/reference/pgsql/functions/pg-query.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-result-error.xml b/reference/pgsql/functions/pg-result-error.xml index f59393cd5..f2108ed3b 100644 --- a/reference/pgsql/functions/pg-result-error.xml +++ b/reference/pgsql/functions/pg-result-error.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-result-status.xml b/reference/pgsql/functions/pg-result-status.xml index cff2f9b5a..035f536b3 100644 --- a/reference/pgsql/functions/pg-result-status.xml +++ b/reference/pgsql/functions/pg-result-status.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-select.xml b/reference/pgsql/functions/pg-select.xml index b6e07cb5d..7f977b519 100644 --- a/reference/pgsql/functions/pg-select.xml +++ b/reference/pgsql/functions/pg-select.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-send-query.xml b/reference/pgsql/functions/pg-send-query.xml index 7e648b6ea..4c130590e 100644 --- a/reference/pgsql/functions/pg-send-query.xml +++ b/reference/pgsql/functions/pg-send-query.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-set-client-encoding.xml b/reference/pgsql/functions/pg-set-client-encoding.xml index 8a4249b55..f755d39f4 100644 --- a/reference/pgsql/functions/pg-set-client-encoding.xml +++ b/reference/pgsql/functions/pg-set-client-encoding.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-trace.xml b/reference/pgsql/functions/pg-trace.xml index 3bc933c8d..49f3078b6 100644 --- a/reference/pgsql/functions/pg-trace.xml +++ b/reference/pgsql/functions/pg-trace.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/pgsql/functions/pg-tty.xml b/reference/pgsql/functions/pg-tty.xml index 4d5dfcba0..ff62ce6ba 100644 --- a/reference/pgsql/functions/pg-tty.xml +++ b/reference/pgsql/functions/pg-tty.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-untrace.xml b/reference/pgsql/functions/pg-untrace.xml index f65cf3dbe..02e0f1db5 100644 --- a/reference/pgsql/functions/pg-untrace.xml +++ b/reference/pgsql/functions/pg-untrace.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/pgsql/functions/pg-update.xml b/reference/pgsql/functions/pg-update.xml index caf80c827..7859c3ead 100644 --- a/reference/pgsql/functions/pg-update.xml +++ b/reference/pgsql/functions/pg-update.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/posix/functions/posix-ctermid.xml b/reference/posix/functions/posix-ctermid.xml index f420c25e8..c25d370d0 100644 --- a/reference/posix/functions/posix-ctermid.xml +++ b/reference/posix/functions/posix-ctermid.xml @@ -1,5 +1,5 @@ - + posix_ctermid diff --git a/reference/posix/functions/posix-get-last-error.xml b/reference/posix/functions/posix-get-last-error.xml index 17f2b6c5e..42cb7a6ce 100644 --- a/reference/posix/functions/posix-get-last-error.xml +++ b/reference/posix/functions/posix-get-last-error.xml @@ -1,5 +1,5 @@ - + posix_get_last_error diff --git a/reference/posix/functions/posix-getcwd.xml b/reference/posix/functions/posix-getcwd.xml index 1dd8ae128..257a63090 100644 --- a/reference/posix/functions/posix-getcwd.xml +++ b/reference/posix/functions/posix-getcwd.xml @@ -1,5 +1,5 @@ - + posix_getcwd diff --git a/reference/posix/functions/posix-getegid.xml b/reference/posix/functions/posix-getegid.xml index 75da77716..7f667cd63 100644 --- a/reference/posix/functions/posix-getegid.xml +++ b/reference/posix/functions/posix-getegid.xml @@ -1,5 +1,5 @@ - + posix_getegid diff --git a/reference/posix/functions/posix-geteuid.xml b/reference/posix/functions/posix-geteuid.xml index 26184a336..dd877c5c7 100644 --- a/reference/posix/functions/posix-geteuid.xml +++ b/reference/posix/functions/posix-geteuid.xml @@ -1,5 +1,5 @@ - + posix_geteuid diff --git a/reference/posix/functions/posix-getgid.xml b/reference/posix/functions/posix-getgid.xml index 0e137af29..4885cd6ef 100644 --- a/reference/posix/functions/posix-getgid.xml +++ b/reference/posix/functions/posix-getgid.xml @@ -1,5 +1,5 @@ - + posix_getgid diff --git a/reference/posix/functions/posix-getgrnam.xml b/reference/posix/functions/posix-getgrnam.xml index be51c54e0..07b699443 100644 --- a/reference/posix/functions/posix-getgrnam.xml +++ b/reference/posix/functions/posix-getgrnam.xml @@ -1,5 +1,5 @@ - + posix_getgrnam diff --git a/reference/posix/functions/posix-getgroups.xml b/reference/posix/functions/posix-getgroups.xml index 276df29cf..a3f6266b1 100644 --- a/reference/posix/functions/posix-getgroups.xml +++ b/reference/posix/functions/posix-getgroups.xml @@ -1,5 +1,5 @@ - + posix_getgroups diff --git a/reference/posix/functions/posix-getlogin.xml b/reference/posix/functions/posix-getlogin.xml index 3bb331cbc..bb0c33405 100644 --- a/reference/posix/functions/posix-getlogin.xml +++ b/reference/posix/functions/posix-getlogin.xml @@ -1,5 +1,5 @@ - + posix_getlogin diff --git a/reference/posix/functions/posix-getpgid.xml b/reference/posix/functions/posix-getpgid.xml index ba78d52f6..63cc0887f 100644 --- a/reference/posix/functions/posix-getpgid.xml +++ b/reference/posix/functions/posix-getpgid.xml @@ -1,5 +1,5 @@ - + posix_getpgid diff --git a/reference/posix/functions/posix-getpgrp.xml b/reference/posix/functions/posix-getpgrp.xml index 28a3c5509..638ba723c 100644 --- a/reference/posix/functions/posix-getpgrp.xml +++ b/reference/posix/functions/posix-getpgrp.xml @@ -1,5 +1,5 @@ - + posix_getpgrp diff --git a/reference/posix/functions/posix-getpid.xml b/reference/posix/functions/posix-getpid.xml index d5e0142b9..fc2cab740 100644 --- a/reference/posix/functions/posix-getpid.xml +++ b/reference/posix/functions/posix-getpid.xml @@ -1,5 +1,5 @@ - + posix_getpid diff --git a/reference/posix/functions/posix-getppid.xml b/reference/posix/functions/posix-getppid.xml index 3d586a641..516e4efd2 100644 --- a/reference/posix/functions/posix-getppid.xml +++ b/reference/posix/functions/posix-getppid.xml @@ -1,5 +1,5 @@ - + posix_getppid diff --git a/reference/posix/functions/posix-getpwnam.xml b/reference/posix/functions/posix-getpwnam.xml index ebb960ec9..0b800487e 100644 --- a/reference/posix/functions/posix-getpwnam.xml +++ b/reference/posix/functions/posix-getpwnam.xml @@ -1,5 +1,5 @@ - + posix_getpwnam diff --git a/reference/posix/functions/posix-getpwuid.xml b/reference/posix/functions/posix-getpwuid.xml index 1b5c6d9e1..8d5846890 100644 --- a/reference/posix/functions/posix-getpwuid.xml +++ b/reference/posix/functions/posix-getpwuid.xml @@ -1,5 +1,5 @@ - + posix_getpwuid diff --git a/reference/posix/functions/posix-getrlimit.xml b/reference/posix/functions/posix-getrlimit.xml index a30c864b8..11c178f6e 100644 --- a/reference/posix/functions/posix-getrlimit.xml +++ b/reference/posix/functions/posix-getrlimit.xml @@ -1,5 +1,5 @@ - + posix_getrlimit diff --git a/reference/posix/functions/posix-getsid.xml b/reference/posix/functions/posix-getsid.xml index 74af3948e..ae02eddcc 100644 --- a/reference/posix/functions/posix-getsid.xml +++ b/reference/posix/functions/posix-getsid.xml @@ -1,5 +1,5 @@ - + posix_getsid diff --git a/reference/posix/functions/posix-getuid.xml b/reference/posix/functions/posix-getuid.xml index 48c5eb43d..76d60db6d 100644 --- a/reference/posix/functions/posix-getuid.xml +++ b/reference/posix/functions/posix-getuid.xml @@ -1,5 +1,5 @@ - + posix_getuid diff --git a/reference/posix/functions/posix-isatty.xml b/reference/posix/functions/posix-isatty.xml index ce082bac8..bddff1f6e 100644 --- a/reference/posix/functions/posix-isatty.xml +++ b/reference/posix/functions/posix-isatty.xml @@ -1,5 +1,5 @@ - + posix_isatty diff --git a/reference/posix/functions/posix-kill.xml b/reference/posix/functions/posix-kill.xml index 95134d7b1..f4de9d2f9 100644 --- a/reference/posix/functions/posix-kill.xml +++ b/reference/posix/functions/posix-kill.xml @@ -1,5 +1,5 @@ - + posix_kill diff --git a/reference/posix/functions/posix-setegid.xml b/reference/posix/functions/posix-setegid.xml index a220d7349..36259f7d7 100644 --- a/reference/posix/functions/posix-setegid.xml +++ b/reference/posix/functions/posix-setegid.xml @@ -1,5 +1,5 @@ - + posix_setegid diff --git a/reference/posix/functions/posix-seteuid.xml b/reference/posix/functions/posix-seteuid.xml index f412e072d..b499e75f7 100644 --- a/reference/posix/functions/posix-seteuid.xml +++ b/reference/posix/functions/posix-seteuid.xml @@ -1,5 +1,5 @@ - + posix_seteuid diff --git a/reference/posix/functions/posix-setgid.xml b/reference/posix/functions/posix-setgid.xml index 52787808b..a21a87b7e 100644 --- a/reference/posix/functions/posix-setgid.xml +++ b/reference/posix/functions/posix-setgid.xml @@ -1,5 +1,5 @@ - + posix_setgid diff --git a/reference/posix/functions/posix-setpgid.xml b/reference/posix/functions/posix-setpgid.xml index e8b77a4c3..357ec2cea 100644 --- a/reference/posix/functions/posix-setpgid.xml +++ b/reference/posix/functions/posix-setpgid.xml @@ -1,5 +1,5 @@ - + posix_setpgid diff --git a/reference/posix/functions/posix-setsid.xml b/reference/posix/functions/posix-setsid.xml index 6bc40b6ea..1b1634ed9 100644 --- a/reference/posix/functions/posix-setsid.xml +++ b/reference/posix/functions/posix-setsid.xml @@ -1,5 +1,5 @@ - + posix_setsid diff --git a/reference/posix/functions/posix-setuid.xml b/reference/posix/functions/posix-setuid.xml index 0b48f0162..f7d8e6b31 100644 --- a/reference/posix/functions/posix-setuid.xml +++ b/reference/posix/functions/posix-setuid.xml @@ -1,5 +1,5 @@ - + posix_setuid diff --git a/reference/posix/functions/posix-strerror.xml b/reference/posix/functions/posix-strerror.xml index 7508e1036..cc45b1070 100644 --- a/reference/posix/functions/posix-strerror.xml +++ b/reference/posix/functions/posix-strerror.xml @@ -1,5 +1,5 @@ - + posix_strerror diff --git a/reference/posix/functions/posix-times.xml b/reference/posix/functions/posix-times.xml index f5d2ffa10..d7a8f07c0 100644 --- a/reference/posix/functions/posix-times.xml +++ b/reference/posix/functions/posix-times.xml @@ -1,5 +1,5 @@ - + posix_times diff --git a/reference/posix/functions/posix-ttyname.xml b/reference/posix/functions/posix-ttyname.xml index c56a38a05..8502da428 100644 --- a/reference/posix/functions/posix-ttyname.xml +++ b/reference/posix/functions/posix-ttyname.xml @@ -1,5 +1,5 @@ - + posix_ttyname diff --git a/reference/posix/functions/posix-uname.xml b/reference/posix/functions/posix-uname.xml index d5ee9a8dd..99312afd2 100644 --- a/reference/posix/functions/posix-uname.xml +++ b/reference/posix/functions/posix-uname.xml @@ -1,5 +1,5 @@ - + posix_uname diff --git a/reference/session/functions/session-cache-expire.xml b/reference/session/functions/session-cache-expire.xml index 298a03a14..7876f4c99 100644 --- a/reference/session/functions/session-cache-expire.xml +++ b/reference/session/functions/session-cache-expire.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/session/functions/session-cache-limiter.xml b/reference/session/functions/session-cache-limiter.xml index ab4ce001f..f5196efa7 100644 --- a/reference/session/functions/session-cache-limiter.xml +++ b/reference/session/functions/session-cache-limiter.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-decode.xml b/reference/session/functions/session-decode.xml index 74928b081..b9157e0b0 100644 --- a/reference/session/functions/session-decode.xml +++ b/reference/session/functions/session-decode.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/session/functions/session-destroy.xml b/reference/session/functions/session-destroy.xml index e2b5249c8..17de0c5cd 100644 --- a/reference/session/functions/session-destroy.xml +++ b/reference/session/functions/session-destroy.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-encode.xml b/reference/session/functions/session-encode.xml index 45c1102a1..c470ce1f4 100644 --- a/reference/session/functions/session-encode.xml +++ b/reference/session/functions/session-encode.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-get-cookie-params.xml b/reference/session/functions/session-get-cookie-params.xml index 1c2f649ba..faab84784 100644 --- a/reference/session/functions/session-get-cookie-params.xml +++ b/reference/session/functions/session-get-cookie-params.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-id.xml b/reference/session/functions/session-id.xml index c8f6febdf..42e778edd 100644 --- a/reference/session/functions/session-id.xml +++ b/reference/session/functions/session-id.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-module-name.xml b/reference/session/functions/session-module-name.xml index e17062a53..c3735481f 100644 --- a/reference/session/functions/session-module-name.xml +++ b/reference/session/functions/session-module-name.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-save-path.xml b/reference/session/functions/session-save-path.xml index f2b40d432..fb935d763 100644 --- a/reference/session/functions/session-save-path.xml +++ b/reference/session/functions/session-save-path.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-set-cookie-params.xml b/reference/session/functions/session-set-cookie-params.xml index 6ff94e17d..7d310c8f7 100644 --- a/reference/session/functions/session-set-cookie-params.xml +++ b/reference/session/functions/session-set-cookie-params.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-set-save-handler.xml b/reference/session/functions/session-set-save-handler.xml index 179182598..929264cf5 100644 --- a/reference/session/functions/session-set-save-handler.xml +++ b/reference/session/functions/session-set-save-handler.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-start.xml b/reference/session/functions/session-start.xml index 105507a43..43e47c85f 100644 --- a/reference/session/functions/session-start.xml +++ b/reference/session/functions/session-start.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-unset.xml b/reference/session/functions/session-unset.xml index 0fc9f9ffe..96a13bf63 100644 --- a/reference/session/functions/session-unset.xml +++ b/reference/session/functions/session-unset.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/session/functions/session-write-close.xml b/reference/session/functions/session-write-close.xml index bcbb8afae..d186402ef 100644 --- a/reference/session/functions/session-write-close.xml +++ b/reference/session/functions/session-write-close.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-accept.xml b/reference/sockets/functions/socket-accept.xml index 617ccd5ae..c5ebae9fc 100644 --- a/reference/sockets/functions/socket-accept.xml +++ b/reference/sockets/functions/socket-accept.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-bind.xml b/reference/sockets/functions/socket-bind.xml index 3f68d8dca..cfa07cbca 100644 --- a/reference/sockets/functions/socket-bind.xml +++ b/reference/sockets/functions/socket-bind.xml @@ -1,5 +1,5 @@ - + socket_bind diff --git a/reference/sockets/functions/socket-clear-error.xml b/reference/sockets/functions/socket-clear-error.xml index 57399dec2..940fc2977 100644 --- a/reference/sockets/functions/socket-clear-error.xml +++ b/reference/sockets/functions/socket-clear-error.xml @@ -1,5 +1,5 @@ - + socket_clear_error diff --git a/reference/sockets/functions/socket-close.xml b/reference/sockets/functions/socket-close.xml index 46807fa75..cd71a9587 100644 --- a/reference/sockets/functions/socket-close.xml +++ b/reference/sockets/functions/socket-close.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-connect.xml b/reference/sockets/functions/socket-connect.xml index f6f98f639..271e6beb7 100644 --- a/reference/sockets/functions/socket-connect.xml +++ b/reference/sockets/functions/socket-connect.xml @@ -1,6 +1,6 @@ - + socket_connect diff --git a/reference/sockets/functions/socket-create-listen.xml b/reference/sockets/functions/socket-create-listen.xml index 4f7c3dd69..a6a6a44a7 100644 --- a/reference/sockets/functions/socket-create-listen.xml +++ b/reference/sockets/functions/socket-create-listen.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-create-pair.xml b/reference/sockets/functions/socket-create-pair.xml index 2ce6a99d7..018b9cb77 100644 --- a/reference/sockets/functions/socket-create-pair.xml +++ b/reference/sockets/functions/socket-create-pair.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-create.xml b/reference/sockets/functions/socket-create.xml index 4e71c31c9..db9b53af4 100644 --- a/reference/sockets/functions/socket-create.xml +++ b/reference/sockets/functions/socket-create.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-get-option.xml b/reference/sockets/functions/socket-get-option.xml index ffd49ce56..2efdf9bd2 100644 --- a/reference/sockets/functions/socket-get-option.xml +++ b/reference/sockets/functions/socket-get-option.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/sockets/functions/socket-getpeername.xml b/reference/sockets/functions/socket-getpeername.xml index 6b6ed4fcd..464f6be31 100644 --- a/reference/sockets/functions/socket-getpeername.xml +++ b/reference/sockets/functions/socket-getpeername.xml @@ -1,6 +1,6 @@ - + socket_getpeername diff --git a/reference/sockets/functions/socket-getsockname.xml b/reference/sockets/functions/socket-getsockname.xml index 43ef43eba..6b21caa6b 100644 --- a/reference/sockets/functions/socket-getsockname.xml +++ b/reference/sockets/functions/socket-getsockname.xml @@ -1,6 +1,6 @@ - + socket_getsockname diff --git a/reference/sockets/functions/socket-last-error.xml b/reference/sockets/functions/socket-last-error.xml index d311790a5..33f2ce77d 100644 --- a/reference/sockets/functions/socket-last-error.xml +++ b/reference/sockets/functions/socket-last-error.xml @@ -1,6 +1,6 @@ - + socket_last_error diff --git a/reference/sockets/functions/socket-listen.xml b/reference/sockets/functions/socket-listen.xml index e014da787..212501342 100644 --- a/reference/sockets/functions/socket-listen.xml +++ b/reference/sockets/functions/socket-listen.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-read.xml b/reference/sockets/functions/socket-read.xml index 228b06403..914e7a0d9 100644 --- a/reference/sockets/functions/socket-read.xml +++ b/reference/sockets/functions/socket-read.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-recv.xml b/reference/sockets/functions/socket-recv.xml index 4cffd46a5..2c910fa90 100644 --- a/reference/sockets/functions/socket-recv.xml +++ b/reference/sockets/functions/socket-recv.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-recvfrom.xml b/reference/sockets/functions/socket-recvfrom.xml index bcd86a0ba..6bc5ef71d 100644 --- a/reference/sockets/functions/socket-recvfrom.xml +++ b/reference/sockets/functions/socket-recvfrom.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-select.xml b/reference/sockets/functions/socket-select.xml index 67a8f9004..0500e0dfe 100644 --- a/reference/sockets/functions/socket-select.xml +++ b/reference/sockets/functions/socket-select.xml @@ -1,5 +1,5 @@ - + socket_select diff --git a/reference/sockets/functions/socket-send.xml b/reference/sockets/functions/socket-send.xml index 6977a2486..ca72cede5 100644 --- a/reference/sockets/functions/socket-send.xml +++ b/reference/sockets/functions/socket-send.xml @@ -1,5 +1,5 @@ - + socket_send diff --git a/reference/sockets/functions/socket-sendto.xml b/reference/sockets/functions/socket-sendto.xml index 1e0f20173..7115a4a13 100644 --- a/reference/sockets/functions/socket-sendto.xml +++ b/reference/sockets/functions/socket-sendto.xml @@ -1,5 +1,5 @@ - + socket_sendto diff --git a/reference/sockets/functions/socket-set-nonblock.xml b/reference/sockets/functions/socket-set-nonblock.xml index 43f5822e0..fff5c909f 100644 --- a/reference/sockets/functions/socket-set-nonblock.xml +++ b/reference/sockets/functions/socket-set-nonblock.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-set-option.xml b/reference/sockets/functions/socket-set-option.xml index 476652bbc..715b32dda 100644 --- a/reference/sockets/functions/socket-set-option.xml +++ b/reference/sockets/functions/socket-set-option.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/sockets/functions/socket-shutdown.xml b/reference/sockets/functions/socket-shutdown.xml index 521264fa8..7fc54fe1a 100644 --- a/reference/sockets/functions/socket-shutdown.xml +++ b/reference/sockets/functions/socket-shutdown.xml @@ -1,5 +1,5 @@ - + socket_shutdown diff --git a/reference/sockets/functions/socket-strerror.xml b/reference/sockets/functions/socket-strerror.xml index 9f1fef5fe..25ff207b3 100644 --- a/reference/sockets/functions/socket-strerror.xml +++ b/reference/sockets/functions/socket-strerror.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/sockets/functions/socket-write.xml b/reference/sockets/functions/socket-write.xml index 9be35be17..84f1f3200 100644 --- a/reference/sockets/functions/socket-write.xml +++ b/reference/sockets/functions/socket-write.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/strings/functions/bin2hex.xml b/reference/strings/functions/bin2hex.xml index fb26fa4e6..5928ee57e 100644 --- a/reference/strings/functions/bin2hex.xml +++ b/reference/strings/functions/bin2hex.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/chop.xml b/reference/strings/functions/chop.xml index 942c207e7..106ab6738 100644 --- a/reference/strings/functions/chop.xml +++ b/reference/strings/functions/chop.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/chr.xml b/reference/strings/functions/chr.xml index f6d023b25..c6d4db719 100644 --- a/reference/strings/functions/chr.xml +++ b/reference/strings/functions/chr.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/chunk-split.xml b/reference/strings/functions/chunk-split.xml index 373dc2b3f..8a1493809 100644 --- a/reference/strings/functions/chunk-split.xml +++ b/reference/strings/functions/chunk-split.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/convert-cyr-string.xml b/reference/strings/functions/convert-cyr-string.xml index 48515d4d5..8f9a1f347 100644 --- a/reference/strings/functions/convert-cyr-string.xml +++ b/reference/strings/functions/convert-cyr-string.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/convert-uudecode.xml b/reference/strings/functions/convert-uudecode.xml index 3b7c4e056..61148d8b8 100644 --- a/reference/strings/functions/convert-uudecode.xml +++ b/reference/strings/functions/convert-uudecode.xml @@ -1,5 +1,5 @@ - + convert_uudecode diff --git a/reference/strings/functions/convert-uuencode.xml b/reference/strings/functions/convert-uuencode.xml index 55323c27c..974982cfb 100644 --- a/reference/strings/functions/convert-uuencode.xml +++ b/reference/strings/functions/convert-uuencode.xml @@ -1,5 +1,5 @@ - + convert_uuencode diff --git a/reference/strings/functions/crc32.xml b/reference/strings/functions/crc32.xml index bb9582deb..740b60feb 100644 --- a/reference/strings/functions/crc32.xml +++ b/reference/strings/functions/crc32.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/crypt.xml b/reference/strings/functions/crypt.xml index cc2d139f9..197b93184 100644 --- a/reference/strings/functions/crypt.xml +++ b/reference/strings/functions/crypt.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/explode.xml b/reference/strings/functions/explode.xml index 654a10892..7baa1e629 100644 --- a/reference/strings/functions/explode.xml +++ b/reference/strings/functions/explode.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/fprintf.xml b/reference/strings/functions/fprintf.xml index d3d371581..d64460014 100644 --- a/reference/strings/functions/fprintf.xml +++ b/reference/strings/functions/fprintf.xml @@ -1,5 +1,5 @@ - + fprintf diff --git a/reference/strings/functions/get-html-translation-table.xml b/reference/strings/functions/get-html-translation-table.xml index b8920f894..e24e17e72 100644 --- a/reference/strings/functions/get-html-translation-table.xml +++ b/reference/strings/functions/get-html-translation-table.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/hebrev.xml b/reference/strings/functions/hebrev.xml index 79a423cf0..252b692be 100644 --- a/reference/strings/functions/hebrev.xml +++ b/reference/strings/functions/hebrev.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/hebrevc.xml b/reference/strings/functions/hebrevc.xml index b18ce1d7d..683bc4d88 100644 --- a/reference/strings/functions/hebrevc.xml +++ b/reference/strings/functions/hebrevc.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/html-entity-decode.xml b/reference/strings/functions/html-entity-decode.xml index 75a5de5d3..221ac4768 100644 --- a/reference/strings/functions/html-entity-decode.xml +++ b/reference/strings/functions/html-entity-decode.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/htmlentities.xml b/reference/strings/functions/htmlentities.xml index 677f21e9f..a026db18b 100644 --- a/reference/strings/functions/htmlentities.xml +++ b/reference/strings/functions/htmlentities.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/htmlspecialchars.xml b/reference/strings/functions/htmlspecialchars.xml index 22b144e78..e043281eb 100644 --- a/reference/strings/functions/htmlspecialchars.xml +++ b/reference/strings/functions/htmlspecialchars.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/implode.xml b/reference/strings/functions/implode.xml index f359947ea..10fdbef6a 100644 --- a/reference/strings/functions/implode.xml +++ b/reference/strings/functions/implode.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/join.xml b/reference/strings/functions/join.xml index 8c45cec56..56a961f77 100644 --- a/reference/strings/functions/join.xml +++ b/reference/strings/functions/join.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/levenshtein.xml b/reference/strings/functions/levenshtein.xml index 8231f8996..c02ba8d3c 100644 --- a/reference/strings/functions/levenshtein.xml +++ b/reference/strings/functions/levenshtein.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/localeconv.xml b/reference/strings/functions/localeconv.xml index 1e4ae8e7d..ed28c439d 100644 --- a/reference/strings/functions/localeconv.xml +++ b/reference/strings/functions/localeconv.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/metaphone.xml b/reference/strings/functions/metaphone.xml index 36bb09556..83346b4de 100644 --- a/reference/strings/functions/metaphone.xml +++ b/reference/strings/functions/metaphone.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/money-format.xml b/reference/strings/functions/money-format.xml index 544bc124d..570c3bc9c 100644 --- a/reference/strings/functions/money-format.xml +++ b/reference/strings/functions/money-format.xml @@ -1,5 +1,5 @@ - + money_format diff --git a/reference/strings/functions/nl-langinfo.xml b/reference/strings/functions/nl-langinfo.xml index a625acd82..d8634b383 100644 --- a/reference/strings/functions/nl-langinfo.xml +++ b/reference/strings/functions/nl-langinfo.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/nl2br.xml b/reference/strings/functions/nl2br.xml index d761f816a..92ef738f3 100644 --- a/reference/strings/functions/nl2br.xml +++ b/reference/strings/functions/nl2br.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/number-format.xml b/reference/strings/functions/number-format.xml index 0fd02de82..6f6fc5842 100644 --- a/reference/strings/functions/number-format.xml +++ b/reference/strings/functions/number-format.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/ord.xml b/reference/strings/functions/ord.xml index b97f74e54..2db1abf0b 100644 --- a/reference/strings/functions/ord.xml +++ b/reference/strings/functions/ord.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/printf.xml b/reference/strings/functions/printf.xml index ed5a450f6..50e4af116 100644 --- a/reference/strings/functions/printf.xml +++ b/reference/strings/functions/printf.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/quoted-printable-decode.xml b/reference/strings/functions/quoted-printable-decode.xml index 54070c9ce..28b0c76d1 100644 --- a/reference/strings/functions/quoted-printable-decode.xml +++ b/reference/strings/functions/quoted-printable-decode.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/quotemeta.xml b/reference/strings/functions/quotemeta.xml index eca3b2656..2b539c461 100644 --- a/reference/strings/functions/quotemeta.xml +++ b/reference/strings/functions/quotemeta.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/rtrim.xml b/reference/strings/functions/rtrim.xml index af6955825..415c7869c 100644 --- a/reference/strings/functions/rtrim.xml +++ b/reference/strings/functions/rtrim.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/sha1-file.xml b/reference/strings/functions/sha1-file.xml index 9a99d2e55..f82b933ea 100644 --- a/reference/strings/functions/sha1-file.xml +++ b/reference/strings/functions/sha1-file.xml @@ -1,5 +1,5 @@ - + sha1_file diff --git a/reference/strings/functions/sha1.xml b/reference/strings/functions/sha1.xml index 39423b6cc..983c59796 100644 --- a/reference/strings/functions/sha1.xml +++ b/reference/strings/functions/sha1.xml @@ -1,5 +1,5 @@ - + sha1 diff --git a/reference/strings/functions/similar-text.xml b/reference/strings/functions/similar-text.xml index 08aaa1c85..3529ca08e 100644 --- a/reference/strings/functions/similar-text.xml +++ b/reference/strings/functions/similar-text.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/soundex.xml b/reference/strings/functions/soundex.xml index 5a004cc25..2e1b5f4f8 100644 --- a/reference/strings/functions/soundex.xml +++ b/reference/strings/functions/soundex.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/sprintf.xml b/reference/strings/functions/sprintf.xml index 1133a0f49..487d5966d 100644 --- a/reference/strings/functions/sprintf.xml +++ b/reference/strings/functions/sprintf.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/sscanf.xml b/reference/strings/functions/sscanf.xml index 25c7e0553..5b19daeca 100644 --- a/reference/strings/functions/sscanf.xml +++ b/reference/strings/functions/sscanf.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/str-ireplace.xml b/reference/strings/functions/str-ireplace.xml index be521cf9d..4a799cd73 100644 --- a/reference/strings/functions/str-ireplace.xml +++ b/reference/strings/functions/str-ireplace.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/str-pad.xml b/reference/strings/functions/str-pad.xml index f6e67c0e2..73bac0438 100644 --- a/reference/strings/functions/str-pad.xml +++ b/reference/strings/functions/str-pad.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/str-repeat.xml b/reference/strings/functions/str-repeat.xml index 5ebda3819..f44a26de4 100644 --- a/reference/strings/functions/str-repeat.xml +++ b/reference/strings/functions/str-repeat.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/str-replace.xml b/reference/strings/functions/str-replace.xml index 1773dbc9c..4ca69b358 100644 --- a/reference/strings/functions/str-replace.xml +++ b/reference/strings/functions/str-replace.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/str-rot13.xml b/reference/strings/functions/str-rot13.xml index 6052d25f0..cb1672e39 100644 --- a/reference/strings/functions/str-rot13.xml +++ b/reference/strings/functions/str-rot13.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/str-shuffle.xml b/reference/strings/functions/str-shuffle.xml index a68b0523b..e298747a5 100644 --- a/reference/strings/functions/str-shuffle.xml +++ b/reference/strings/functions/str-shuffle.xml @@ -1,5 +1,5 @@ - + str_shuffle diff --git a/reference/strings/functions/str-split.xml b/reference/strings/functions/str-split.xml index 8f30e358e..c1cde4950 100644 --- a/reference/strings/functions/str-split.xml +++ b/reference/strings/functions/str-split.xml @@ -1,5 +1,5 @@ - + str_split diff --git a/reference/strings/functions/str-word-count.xml b/reference/strings/functions/str-word-count.xml index bcff22657..3c7f05480 100644 --- a/reference/strings/functions/str-word-count.xml +++ b/reference/strings/functions/str-word-count.xml @@ -1,5 +1,5 @@ - + str_word_count diff --git a/reference/strings/functions/strcasecmp.xml b/reference/strings/functions/strcasecmp.xml index 6ecc76a15..ed729e1d1 100644 --- a/reference/strings/functions/strcasecmp.xml +++ b/reference/strings/functions/strcasecmp.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strchr.xml b/reference/strings/functions/strchr.xml index 2ccf47403..b373bf734 100644 --- a/reference/strings/functions/strchr.xml +++ b/reference/strings/functions/strchr.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strcoll.xml b/reference/strings/functions/strcoll.xml index ad947dc8b..745538b57 100644 --- a/reference/strings/functions/strcoll.xml +++ b/reference/strings/functions/strcoll.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strcspn.xml b/reference/strings/functions/strcspn.xml index 1d55d4705..039bbc086 100644 --- a/reference/strings/functions/strcspn.xml +++ b/reference/strings/functions/strcspn.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strip-tags.xml b/reference/strings/functions/strip-tags.xml index 5041879b6..4bf705606 100644 --- a/reference/strings/functions/strip-tags.xml +++ b/reference/strings/functions/strip-tags.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/stripcslashes.xml b/reference/strings/functions/stripcslashes.xml index 92d792eb5..83eb5f405 100644 --- a/reference/strings/functions/stripcslashes.xml +++ b/reference/strings/functions/stripcslashes.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/stripos.xml b/reference/strings/functions/stripos.xml index 60288edbd..a53a53dbb 100644 --- a/reference/strings/functions/stripos.xml +++ b/reference/strings/functions/stripos.xml @@ -1,5 +1,5 @@ - + stripos diff --git a/reference/strings/functions/stristr.xml b/reference/strings/functions/stristr.xml index f08dbc1f7..a5736be27 100644 --- a/reference/strings/functions/stristr.xml +++ b/reference/strings/functions/stristr.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strlen.xml b/reference/strings/functions/strlen.xml index a908ccbef..98a65c392 100644 --- a/reference/strings/functions/strlen.xml +++ b/reference/strings/functions/strlen.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strnatcasecmp.xml b/reference/strings/functions/strnatcasecmp.xml index 667f13233..b400f8dfa 100644 --- a/reference/strings/functions/strnatcasecmp.xml +++ b/reference/strings/functions/strnatcasecmp.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strnatcmp.xml b/reference/strings/functions/strnatcmp.xml index 51df656c6..3d6b59706 100644 --- a/reference/strings/functions/strnatcmp.xml +++ b/reference/strings/functions/strnatcmp.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strncasecmp.xml b/reference/strings/functions/strncasecmp.xml index b7ecfc330..546c602e0 100644 --- a/reference/strings/functions/strncasecmp.xml +++ b/reference/strings/functions/strncasecmp.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strncmp.xml b/reference/strings/functions/strncmp.xml index 19ca80533..20221826b 100644 --- a/reference/strings/functions/strncmp.xml +++ b/reference/strings/functions/strncmp.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strpbrk.xml b/reference/strings/functions/strpbrk.xml index dd90130bd..0561c0e8b 100644 --- a/reference/strings/functions/strpbrk.xml +++ b/reference/strings/functions/strpbrk.xml @@ -1,5 +1,5 @@ - + strpbrk diff --git a/reference/strings/functions/strpos.xml b/reference/strings/functions/strpos.xml index a28f53710..3a844103a 100644 --- a/reference/strings/functions/strpos.xml +++ b/reference/strings/functions/strpos.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strrchr.xml b/reference/strings/functions/strrchr.xml index 795ec0199..b1af29399 100644 --- a/reference/strings/functions/strrchr.xml +++ b/reference/strings/functions/strrchr.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strrev.xml b/reference/strings/functions/strrev.xml index 327158b69..70ef9d8de 100644 --- a/reference/strings/functions/strrev.xml +++ b/reference/strings/functions/strrev.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strripos.xml b/reference/strings/functions/strripos.xml index ca6cbce00..96d5ea588 100644 --- a/reference/strings/functions/strripos.xml +++ b/reference/strings/functions/strripos.xml @@ -1,5 +1,5 @@ - + strripos diff --git a/reference/strings/functions/strrpos.xml b/reference/strings/functions/strrpos.xml index 13e037183..c953b7dff 100644 --- a/reference/strings/functions/strrpos.xml +++ b/reference/strings/functions/strrpos.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strspn.xml b/reference/strings/functions/strspn.xml index 91477fbad..8e39ab8a0 100644 --- a/reference/strings/functions/strspn.xml +++ b/reference/strings/functions/strspn.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strstr.xml b/reference/strings/functions/strstr.xml index f515e7330..6271581aa 100644 --- a/reference/strings/functions/strstr.xml +++ b/reference/strings/functions/strstr.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strtok.xml b/reference/strings/functions/strtok.xml index 6621019f1..e1510d344 100644 --- a/reference/strings/functions/strtok.xml +++ b/reference/strings/functions/strtok.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strtolower.xml b/reference/strings/functions/strtolower.xml index d9dc1dd7c..61905f775 100644 --- a/reference/strings/functions/strtolower.xml +++ b/reference/strings/functions/strtolower.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strtoupper.xml b/reference/strings/functions/strtoupper.xml index 0da4dd33a..35b6103c2 100644 --- a/reference/strings/functions/strtoupper.xml +++ b/reference/strings/functions/strtoupper.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/strtr.xml b/reference/strings/functions/strtr.xml index adc923f7c..0b72a9a7b 100644 --- a/reference/strings/functions/strtr.xml +++ b/reference/strings/functions/strtr.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/substr-compare.xml b/reference/strings/functions/substr-compare.xml index 73b8a1146..bca533161 100644 --- a/reference/strings/functions/substr-compare.xml +++ b/reference/strings/functions/substr-compare.xml @@ -1,5 +1,5 @@ - + substr_compare diff --git a/reference/strings/functions/substr-count.xml b/reference/strings/functions/substr-count.xml index 6bea9df43..6d2c7e4c2 100644 --- a/reference/strings/functions/substr-count.xml +++ b/reference/strings/functions/substr-count.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/substr-replace.xml b/reference/strings/functions/substr-replace.xml index 6a2645406..d27991964 100644 --- a/reference/strings/functions/substr-replace.xml +++ b/reference/strings/functions/substr-replace.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/substr.xml b/reference/strings/functions/substr.xml index d5dd032a0..e2e141ec8 100644 --- a/reference/strings/functions/substr.xml +++ b/reference/strings/functions/substr.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/trim.xml b/reference/strings/functions/trim.xml index 0e757137d..a123430bd 100644 --- a/reference/strings/functions/trim.xml +++ b/reference/strings/functions/trim.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/ucfirst.xml b/reference/strings/functions/ucfirst.xml index 9157337a3..114ada20b 100644 --- a/reference/strings/functions/ucfirst.xml +++ b/reference/strings/functions/ucfirst.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/ucwords.xml b/reference/strings/functions/ucwords.xml index c8197fcb0..535773f1b 100644 --- a/reference/strings/functions/ucwords.xml +++ b/reference/strings/functions/ucwords.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/vfprintf.xml b/reference/strings/functions/vfprintf.xml index b2537372f..15f482140 100644 --- a/reference/strings/functions/vfprintf.xml +++ b/reference/strings/functions/vfprintf.xml @@ -1,5 +1,5 @@ - + vfprintf diff --git a/reference/strings/functions/vprintf.xml b/reference/strings/functions/vprintf.xml index 0abece47d..adb1c0b95 100644 --- a/reference/strings/functions/vprintf.xml +++ b/reference/strings/functions/vprintf.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/vsprintf.xml b/reference/strings/functions/vsprintf.xml index 9383a6b95..235ccc138 100644 --- a/reference/strings/functions/vsprintf.xml +++ b/reference/strings/functions/vsprintf.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/strings/functions/wordwrap.xml b/reference/strings/functions/wordwrap.xml index 49cdf3d8d..88a58ef82 100644 --- a/reference/strings/functions/wordwrap.xml +++ b/reference/strings/functions/wordwrap.xml @@ -1,5 +1,5 @@ - + diff --git a/reference/uodbc/functions/odbc-binmode.xml b/reference/uodbc/functions/odbc-binmode.xml index 9ceebfe9c..123b97b42 100644 --- a/reference/uodbc/functions/odbc-binmode.xml +++ b/reference/uodbc/functions/odbc-binmode.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-close-all.xml b/reference/uodbc/functions/odbc-close-all.xml index 053651669..5271d6c4a 100644 --- a/reference/uodbc/functions/odbc-close-all.xml +++ b/reference/uodbc/functions/odbc-close-all.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-close.xml b/reference/uodbc/functions/odbc-close.xml index 6c9c6f066..c0855c3c9 100644 --- a/reference/uodbc/functions/odbc-close.xml +++ b/reference/uodbc/functions/odbc-close.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-columnprivileges.xml b/reference/uodbc/functions/odbc-columnprivileges.xml index 90a43ed7e..13cd95daf 100644 --- a/reference/uodbc/functions/odbc-columnprivileges.xml +++ b/reference/uodbc/functions/odbc-columnprivileges.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-columns.xml b/reference/uodbc/functions/odbc-columns.xml index 45a792737..6428877a4 100644 --- a/reference/uodbc/functions/odbc-columns.xml +++ b/reference/uodbc/functions/odbc-columns.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-commit.xml b/reference/uodbc/functions/odbc-commit.xml index 3b91da792..2fa8004c4 100644 --- a/reference/uodbc/functions/odbc-commit.xml +++ b/reference/uodbc/functions/odbc-commit.xml @@ -1,5 +1,5 @@ - + odbc_commit diff --git a/reference/uodbc/functions/odbc-connect.xml b/reference/uodbc/functions/odbc-connect.xml index 277b9edc3..bfb1248b4 100644 --- a/reference/uodbc/functions/odbc-connect.xml +++ b/reference/uodbc/functions/odbc-connect.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-cursor.xml b/reference/uodbc/functions/odbc-cursor.xml index 6bf7a1965..6440eddef 100644 --- a/reference/uodbc/functions/odbc-cursor.xml +++ b/reference/uodbc/functions/odbc-cursor.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-data-source.xml b/reference/uodbc/functions/odbc-data-source.xml index 054303454..732d2bfff 100644 --- a/reference/uodbc/functions/odbc-data-source.xml +++ b/reference/uodbc/functions/odbc-data-source.xml @@ -1,5 +1,5 @@ - + odbc_data_source diff --git a/reference/uodbc/functions/odbc-do.xml b/reference/uodbc/functions/odbc-do.xml index a5559a852..47524e6c3 100644 --- a/reference/uodbc/functions/odbc-do.xml +++ b/reference/uodbc/functions/odbc-do.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-exec.xml b/reference/uodbc/functions/odbc-exec.xml index 60e45b093..1edd9cbf7 100644 --- a/reference/uodbc/functions/odbc-exec.xml +++ b/reference/uodbc/functions/odbc-exec.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-fetch-into.xml b/reference/uodbc/functions/odbc-fetch-into.xml index e62158235..97985e1f3 100644 --- a/reference/uodbc/functions/odbc-fetch-into.xml +++ b/reference/uodbc/functions/odbc-fetch-into.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-fetch-row.xml b/reference/uodbc/functions/odbc-fetch-row.xml index 63ed1e01c..d38039f90 100644 --- a/reference/uodbc/functions/odbc-fetch-row.xml +++ b/reference/uodbc/functions/odbc-fetch-row.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-field-len.xml b/reference/uodbc/functions/odbc-field-len.xml index ec9307c34..cfde14e4e 100644 --- a/reference/uodbc/functions/odbc-field-len.xml +++ b/reference/uodbc/functions/odbc-field-len.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-field-name.xml b/reference/uodbc/functions/odbc-field-name.xml index 6817d2448..1ea150145 100644 --- a/reference/uodbc/functions/odbc-field-name.xml +++ b/reference/uodbc/functions/odbc-field-name.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-field-num.xml b/reference/uodbc/functions/odbc-field-num.xml index dd97ca0fe..0b8caf41c 100644 --- a/reference/uodbc/functions/odbc-field-num.xml +++ b/reference/uodbc/functions/odbc-field-num.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-field-precision.xml b/reference/uodbc/functions/odbc-field-precision.xml index 6e1c76a06..48ee6a142 100644 --- a/reference/uodbc/functions/odbc-field-precision.xml +++ b/reference/uodbc/functions/odbc-field-precision.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-field-scale.xml b/reference/uodbc/functions/odbc-field-scale.xml index 7b14a6567..37cb7f519 100644 --- a/reference/uodbc/functions/odbc-field-scale.xml +++ b/reference/uodbc/functions/odbc-field-scale.xml @@ -1,6 +1,6 @@ - + odbc_field_scale diff --git a/reference/uodbc/functions/odbc-field-type.xml b/reference/uodbc/functions/odbc-field-type.xml index e0e17352c..704b86410 100644 --- a/reference/uodbc/functions/odbc-field-type.xml +++ b/reference/uodbc/functions/odbc-field-type.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-foreignkeys.xml b/reference/uodbc/functions/odbc-foreignkeys.xml index 5efd8c4c0..6a395f859 100644 --- a/reference/uodbc/functions/odbc-foreignkeys.xml +++ b/reference/uodbc/functions/odbc-foreignkeys.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-free-result.xml b/reference/uodbc/functions/odbc-free-result.xml index 6ecb9e079..f3dfa29cd 100644 --- a/reference/uodbc/functions/odbc-free-result.xml +++ b/reference/uodbc/functions/odbc-free-result.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-gettypeinfo.xml b/reference/uodbc/functions/odbc-gettypeinfo.xml index 6156225f9..5394a1705 100644 --- a/reference/uodbc/functions/odbc-gettypeinfo.xml +++ b/reference/uodbc/functions/odbc-gettypeinfo.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-longreadlen.xml b/reference/uodbc/functions/odbc-longreadlen.xml index d174b71ee..b06eabd77 100644 --- a/reference/uodbc/functions/odbc-longreadlen.xml +++ b/reference/uodbc/functions/odbc-longreadlen.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-next-result.xml b/reference/uodbc/functions/odbc-next-result.xml index e5ead37a7..6deb3c70d 100644 --- a/reference/uodbc/functions/odbc-next-result.xml +++ b/reference/uodbc/functions/odbc-next-result.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-num-fields.xml b/reference/uodbc/functions/odbc-num-fields.xml index f69e75b3e..61a6f2706 100644 --- a/reference/uodbc/functions/odbc-num-fields.xml +++ b/reference/uodbc/functions/odbc-num-fields.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-num-rows.xml b/reference/uodbc/functions/odbc-num-rows.xml index 45452cf36..955d0d27e 100644 --- a/reference/uodbc/functions/odbc-num-rows.xml +++ b/reference/uodbc/functions/odbc-num-rows.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-pconnect.xml b/reference/uodbc/functions/odbc-pconnect.xml index e74bc005e..dadce1279 100644 --- a/reference/uodbc/functions/odbc-pconnect.xml +++ b/reference/uodbc/functions/odbc-pconnect.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-primarykeys.xml b/reference/uodbc/functions/odbc-primarykeys.xml index b93f93d6c..9c63f5063 100644 --- a/reference/uodbc/functions/odbc-primarykeys.xml +++ b/reference/uodbc/functions/odbc-primarykeys.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-procedurecolumns.xml b/reference/uodbc/functions/odbc-procedurecolumns.xml index a80ba47bc..228b75fdb 100644 --- a/reference/uodbc/functions/odbc-procedurecolumns.xml +++ b/reference/uodbc/functions/odbc-procedurecolumns.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-procedures.xml b/reference/uodbc/functions/odbc-procedures.xml index 2f669c8f0..3eb8f985d 100644 --- a/reference/uodbc/functions/odbc-procedures.xml +++ b/reference/uodbc/functions/odbc-procedures.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-result-all.xml b/reference/uodbc/functions/odbc-result-all.xml index 9594df859..f8ed8d066 100644 --- a/reference/uodbc/functions/odbc-result-all.xml +++ b/reference/uodbc/functions/odbc-result-all.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-result.xml b/reference/uodbc/functions/odbc-result.xml index d5cd73471..7abfe1b7e 100644 --- a/reference/uodbc/functions/odbc-result.xml +++ b/reference/uodbc/functions/odbc-result.xml @@ -1,7 +1,7 @@ - + diff --git a/reference/uodbc/functions/odbc-rollback.xml b/reference/uodbc/functions/odbc-rollback.xml index 84302a977..2b6e38b55 100644 --- a/reference/uodbc/functions/odbc-rollback.xml +++ b/reference/uodbc/functions/odbc-rollback.xml @@ -1,7 +1,7 @@ - +