Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

strip_tags() Fonksiyonu Eklendi #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions php/strip_tags
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"author": "yusufhan <[email protected]>",
"title": "strip_tags() Fonksiyonu",
"name": "strip_tags",
"syntax": "strip_tags ( string $dizge [, string $ayıklanmayacaklar ] ) : string",
"description": "Bu fonksiyon string değişkenlerinizden bilgi girişi aldığınız verilerden Tagları engellemek ve ayıklanmış bir yazı döndürmek için kullanılır",
"note": "Formlardan gelen bilgileri bu şekilde ayıklayabilirsiniz.",
"compatibilities": [
"php 4",
"php 5",
"php 7"
],
"params": [
{
"name": "$dizge",
"type": "string",
"description": "Ayıklama yapılacak değişken",
"required": true
},
{
"name": "$ayıklanmayacaklar",
"type": "string",
"description": "Ayıklanmayacak, izin verilen karakterler",
"required": false
}
],
"examples": [
{
"code": "<?php\n$metin = '<p>Deneme yazısı.</p><!-- Yorum Satırı --> ' .\n '<a href=\"#test\">Test'e Git</a>';\necho strip_tags($metin);\necho \"\\n\";\n\n// <p> ve <a>'ya izin verelim\necho strip_tags($metin, '<p><a>');\n?>\n\nÇIKTI:\nDeneme yazısı. Test'e Git\n<p>Deneme yazısı.</p> <a href=\"#test\">Test'e Git</a>",
"description": "Örnek Kodlar",
"title": "Örnek"
}
],
"return": {
"type": "string",
"text": "Tag'lardan Ayıklanmış String"
},
"deprecated": false
}