iconv_substr
(PHP 5, PHP 7)
iconv_substr — Cut out part of a string
Description
$str
, int $offset
[, int $length
= iconv_strlen($str, $charset)
[, string $charset
= ini_get("iconv.internal_encoding")
]] ) : string
Cuts a portion of str
specified by the
offset
and length
parameters.
Parameters
-
str
-
The original string.
-
offset
-
If
offset
is non-negative, iconv_substr() cuts the portion out ofstr
beginning atoffset
'th character, counting from zero.If
offset
is negative, iconv_substr() cuts out the portion beginning at the position,offset
characters away from the end ofstr
. -
length
-
If
length
is given and is positive, the return value will contain at mostlength
characters of the portion that begins atoffset
(depending on the length ofstring
).If negative
length
is passed, iconv_substr() cuts the portion out ofstr
from theoffset
'th character up to the character that islength
characters away from the end of the string. In caseoffset
is also negative, the start position is calculated beforehand according to the rule explained above. -
charset
-
If
charset
parameter is omitted,string
are assumed to be encoded in iconv.internal_encoding.Note that
offset
andlength
parameters are always deemed to represent offsets that are calculated on the basis of the character set determined bycharset
, whilst the counterpart substr() always takes these for byte offsets.
Return Values
Returns the portion of str
specified by the
offset
and length
parameters.
If str
is shorter than offset
characters long, FALSE
will be returned.
If str
is exactly offset
characters long, an empty string will be returned.
Changelog
Version | Description |
---|---|
7.0.11 |
If str is equal to
offset characters long, an empty string will be
returned. Prior to this version, FALSE was returned in this case.
|
See Also
- substr() - Return part of a string
- mb_substr() - Get part of string
- mb_strcut() - Get part of string
Vertaling niet beschikbaar
De PHP-handleiding is nog niet in het Nederlands vertaald, dus het scherm is in het Engels. Als u wilt, kunt u het ook in het Frans of in het Duits raadplegen.
Als je de moed voelt, kun je je vertaling aanbieden ;-)
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 30/01/2003 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/php-rf-iconv-substr.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.