Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence du fichier core.php

Aller au code source de ce fichier.

Espaces de nommage

namespace  utf8

Fonctions

 utf8_strlen ($str)
 utf8_strpos ($str, $search, $offset=FALSE)
 utf8_strrpos ($str, $search, $offset=FALSE)
 utf8_substr ($str, $offset, $length=FALSE)
 utf8_strtolower ($str)
 utf8_strtoupper ($str)

Documentation des fonctions

utf8_strlen (   $str)

Définition à la ligne 26 du fichier core.php.

Référencé par JString\strlen(), utf8_str_pad(), utf8_str_split(), utf8_strcspn(), utf8_strpos(), utf8_strrpos(), utf8_strspn(), utf8_substr_replace(), et utf8_ucfirst().

{
return mb_strlen($str);
}

+ Voici le graphe des appelants de cette fonction :

utf8_strpos (   $str,
  $search,
  $offset = FALSE 
)

Définition à la ligne 43 du fichier core.php.

Référencé par JString\strpos(), et utf8_strpos().

{
if ( $offset === FALSE ) {
return mb_strpos($str, $search);
} else {
return mb_strpos($str, $search, $offset);
}
}

+ Voici le graphe des appelants de cette fonction :

utf8_strrpos (   $str,
  $search,
  $offset = FALSE 
)

Définition à la ligne 63 du fichier core.php.

Référencé par JString\strrpos(), et utf8_strrpos().

{
if ( $offset === FALSE ) {
# Emulate behaviour of strrpos rather than raising warning
if ( empty($str) ) {
return FALSE;
}
return mb_strrpos($str, $search);
} else {
if ( !is_int($offset) ) {
trigger_error('utf8_strrpos expects parameter 3 to be long',E_USER_WARNING);
return FALSE;
}
$str = mb_substr($str, $offset);
if ( FALSE !== ( $pos = mb_strrpos($str, $search) ) ) {
return $pos + $offset;
}
return FALSE;
}
}

+ Voici le graphe des appelants de cette fonction :

utf8_strtolower (   $str)

Définition à la ligne 120 du fichier core.php.

Référencé par JString\strcasecmp(), JString\strtolower(), utf8_ireplace(), utf8_strcasecmp(), et utf8_stristr().

{
return mb_strtolower($str);
}

+ Voici le graphe des appelants de cette fonction :

utf8_strtoupper (   $str)

Définition à la ligne 138 du fichier core.php.

Référencé par JString\strtoupper(), utf8_ucfirst(), et utf8_ucwords_callback().

{
return mb_strtoupper($str);
}

+ Voici le graphe des appelants de cette fonction :

utf8_substr (   $str,
  $offset,
  $length = FALSE 
)

Définition à la ligne 98 du fichier core.php.

Référencé par JString\substr(), utf8_str_pad(), utf8_strcspn(), utf8_strpos(), utf8_strrpos(), et utf8_strspn().

{
if ( $length === FALSE ) {
return mb_substr($str, $offset);
} else {
return mb_substr($str, $offset, $length);
}
}

+ Voici le graphe des appelants de cette fonction :