127 public static function encode(
$value, $pretty =
false, $escaping = 0 ) {
128 if ( !is_string( $pretty ) ) {
129 $pretty = $pretty ?
' ' :
false;
133 if ( $pretty !==
false && $bug66021 ===
null ) {
134 $bug66021 = json_encode( [], JSON_PRETTY_PRINT ) !==
'[]';
141 $options |= $pretty !==
false ? JSON_PRETTY_PRINT : 0;
142 $options |= ( $escaping & self::UTF8_OK ) ? JSON_UNESCAPED_UNICODE : 0;
143 $options |= ( $escaping & self::XMLMETA_OK ) ? 0 : ( JSON_HEX_TAG | JSON_HEX_AMP );
145 if ( $json ===
false ) {
149 if ( $pretty !==
false ) {
152 $json = preg_replace( self::WS_CLEANUP_REGEX,
'', $json );
154 if ( $pretty !==
' ' ) {
156 $json = str_replace(
"\n ",
"\n\t", $json );
157 while ( strpos( $json,
"\t " ) !==
false ) {
158 $json = str_replace(
"\t ",
"\t\t", $json );
161 if ( $pretty !==
"\t" ) {
163 $json = str_replace(
"\t", $pretty, $json );
167 if ( $escaping & self::UTF8_OK ) {
168 $json = str_replace( self::$badChars, self::$badCharsEscaped, $json );
188 return json_decode(
$value, $assoc );
202 if (
$options & self::STRIP_COMMENTS ) {
205 $assoc = (
$options & self::FORCE_ASSOC ) !== 0;
206 $result = json_decode(
$value, $assoc );
207 $code = json_last_error();
209 if (
$code === JSON_ERROR_SYNTAX && (
$options & self::TRY_FIXING ) !== 0 ) {
218 preg_replace(
'/,([ \t]*[}\]][^"\r\n]*([\r\n]|$)|[ \t]*[\r\n][ \t\r\n]*[}\]])/',
'$1',
221 $result = json_decode(
$value, $assoc );
222 if ( JSON_ERROR_NONE === json_last_error() ) {
224 $st = Status::newGood( $result );
225 $st->warning(
wfMessage(
'json-warn-trailing-comma' )->numParams( $count ) );
232 case JSON_ERROR_NONE:
233 return Status::newGood( $result );
235 return Status::newFatal(
wfMessage(
'json-error-unknown' )->numParams(
$code ) );
236 case JSON_ERROR_DEPTH:
237 $msg =
'json-error-depth';
239 case JSON_ERROR_STATE_MISMATCH:
240 $msg =
'json-error-state-mismatch';
242 case JSON_ERROR_CTRL_CHAR:
243 $msg =
'json-error-ctrl-char';
245 case JSON_ERROR_SYNTAX:
246 $msg =
'json-error-syntax';
248 case JSON_ERROR_UTF8:
249 $msg =
'json-error-utf8';
251 case JSON_ERROR_RECURSION:
252 $msg =
'json-error-recursion';
254 case JSON_ERROR_INF_OR_NAN:
255 $msg =
'json-error-inf-or-nan';
257 case JSON_ERROR_UNSUPPORTED_TYPE:
258 $msg =
'json-error-unsupported-type';
261 return Status::newFatal( $msg );
276 $maxLen = strlen( $str );
283 for ( $idx = 0; $idx < $maxLen; $idx++ ) {
284 switch ( $str[$idx] ) {
286 $lookBehind = ( $idx - 1 >= 0 ) ? $str[$idx - 1] :
'';
287 if ( !$inComment && $lookBehind !==
'\\' ) {
289 $inString = !$inString;
294 $lookAhead = ( $idx + 1 < $maxLen ) ? $str[$idx + 1] :
'';
295 $lookBehind = ( $idx - 1 >= 0 ) ? $str[$idx - 1] :
'';
299 } elseif ( !$inComment &&
300 ( $lookAhead ===
'/' || $lookAhead ===
'*' )
304 $buffer .= substr( $str, $mark, $idx - $mark );
309 $multiline = $lookAhead ===
'*';
311 } elseif ( $multiline && $lookBehind ===
'*' ) {
320 if ( $inComment && !$multiline ) {
336 return $buffer . substr( $str, $mark, $maxLen - $mark );
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services