Hallo!
Ich suche ein Pendant zu der CString Funktion 'SetAt' in PHP. Gibt es sowas?
Hier die Beschreibung des CString SetAt:
CString::SetAt
This method overwrites a single character specified by an index number.
SetAt will not enlarge the string if the index exceeds the bounds of the
existing string.
void SetAt(
int nIndex,
TCHAR ch );
Parameters
nIndex
Specifies the zero-based index of the character in the CString object.
The nIndex parameter must be greater than or equal to 0 and less than the
value returned by GetLength. The Debug version of the Microsoft Foundation
Class Library validates the bounds of nIndex; the Release version does not.
ch
Specifies the character to insert. [/php]
Bine