BBCode::Wikify( $string )


Description Description


Source Source

File: includes/admin/parser.php

function Wikify($string) {
return rawurlencode(str_replace(" ", "_",
trim(preg_replace("/[!?;@#\$%\\^&*<>=+`~\\x00-\\x20_-]+/", " ", $string))));
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.