strip_image_tags($str)
Parameters: |
|
---|---|
Returns: |
The input string with no image tags |
Return type: |
string |
This is a security function that will strip image tags from a string. It leaves the image URL as plain text.
Example:
1 | $string = strip_image_tags( $string ); |
This function is an alias for CI_Security::strip_image_tags()
. For more info, please see the Security Library documentation.
Please login to continue.