Lines Matching refs:of

46 // Just take the whole string with plenty of room to spare
58 // What if we expect an output width of zero?
62 // Or output width of one?
66 // OK, let's count back 3 characters from the end of the string, then allow a width of 5
71 // We'll count back 4 characters, then allow a width of ((4 * 2) - 2) = 6
72 // Since the output will not reach the END of the string, the trim marker
73 // will have to be added, and will consume a width of 3
74 // We also suppress the deprecation for negative width as of PHP 8.3
87 // Cut down to a width of 15, which is 10 characters in this case.
91 // With max width of 100, trim marker will not be added
97 // Count 30 characters back from end of string, then limit to width of 5
98 // Since width of trim marker is 3, this will only get a single char from string
101 // Count 9 characters from start of string. Since string is 39 characters
105 // Skip 15 characters, which leaves a total width of 42. Then trim string down
106 // to 5 less than that, which is a width of 37.
107 // We also suppress the deprecation for negative width as of PHP 8.3
110 // Take the last 30 characters, which have a width of 54. Trim string down to
112 // We also suppress the deprecation for negative width as of PHP 8.3
116 // it takes us to the end of the string, and output is empty
119 // Take the last 10 characters, which have a width of 20. Trim string down to
120 // 12 less than that, which is a width of 8.
121 // We also suppress the deprecation for negative width as of PHP 8.3
125 // We also suppress the deprecation for negative width as of PHP 8.3
141 // We also suppress the deprecation for negative width as of PHP 8.3
200 // sometimes not skip over characters at beginning of string when requested to
222 // We also suppress the deprecation for negative width as of PHP 8.3
257 mb_strimwidth(): Argument #3 ($width) is out of range
258 mb_strimwidth(): Argument #2 ($start) is out of range
259 mb_strimwidth(): Argument #2 ($start) is out of range
260 mb_strimwidth(): Argument #3 ($width) is out of range