当前位置: 首页>>代码示例>>PHP>>正文


PHP BBCode::strip方法代码示例

本文整理汇总了PHP中BBCode::strip方法的典型用法代码示例。如果您正苦于以下问题:PHP BBCode::strip方法的具体用法?PHP BBCode::strip怎么用?PHP BBCode::strip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BBCode的用法示例。


在下文中一共展示了BBCode::strip方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: SQL

<?php

$db = new SQL(0);
$info = $db->cmdrow(0, 'SELECT T1.*,T2.*,T3.right 
FROM user_list as T1 
LEFT JOIN user_action as T2 ON T1.id=T2.user 
LEFT JOIN user_rights as T3 ON T1.id=T3.user AND T3.right="expert" 
WHERE T1.id={0} LIMIT 0,1', array($params["user_id"]));
$str = WebCache::get("http://www.gravatar.com/" . md5(strtolower(trim($info["email_standard"]))) . ".json", 10000, array("entry", "}"));
$gdata = json_decode($str, true);
PageEngine::html("html_head", array("title" => _h("{0}'s Profil", array($info["username"])), "description" => BBCode::strip($info["biography"])));
PageEngine::html("header", array("searchquery" => isset($_GET["query"]) ? $_GET["query"] : ""));
?>
	<div id="Content" class="content-wrapper PageUserprofile">
		<article class="vcard contact hcard">
			
			<h1 class="search-result-summary"><?php 
echo _e("{0}'s Profil-Übersicht", array(0 => $info["username"]));
?>
</h1>
<?php 
PageEngine::html("box_userprofile_navi", array("id" => $info["id"], "name" => $info["username"]));
?>
			
			<table class="wrapper"><tr style="vertical-align: top;">
			<td style="text-align: center;">
				<div class="box_gravatar" style="width:140px; height:140px margin-bottom: 10px; position: relative;">
					<img class="profile photo" src="http://www.gravatar.com/avatar/<?php 
echo md5($info["email_standard"]);
?>
?s=140&d=identicon" style="border: #EEE 1px solid; padding: 5px; border-radius: 3px; ">
开发者ID:andreaskasper,项目名称:askbot_php,代码行数:31,代码来源:page_userprofile.php

示例2: strip

 private function strip($in)
 {
     $bb = new BBCode();
     return $bb->strip($in);
 }
开发者ID:thelectronicnub,项目名称:shimmie2,代码行数:5,代码来源:test.php

示例3:

	});
	
	
	$(".commenteditor .addcommentbtn").click(function() {
		$(this).hide(300);
		$(this).parent().find(".editor").show(300);
	});
	$(".commenteditor textarea").keyup(function() { 
		var a = $(this).val().length;
		if (a < 10) {
			$(this).parent().find(".counter").text("noch "+(10-a)+" Mindestzeichen");
		} else {
			$(this).parent().find(".counter").text((320-a)+" Zeichen übrig");
		}
	});
	$(".commenteditor .button.cancel").click(function() {
		$(this).parent().hide(300);
		$(this).parent().parent().parent().parent().find(".addcommentbtn").show(300);
	});
});
</script>
			
<div class="clearfix"></div>
			<?php 
if (count($answers) > 0) {
    ?>
<div style="margin-bottom: 15px; padding-left: 7px; width: 723px; margin-top: 10px; background-color: #EFF5F6; height: 30px; line-height:30px;">
	<div class="tabBar tabBar-answer">
		<div class="tabsA">
		<span class="label">Sortiere nach »</span>
		<a id="oldest" href="?sort=oldest" title="Älteste Antworten werden als Erstes angezeigt" class="<?php 
开发者ID:andreaskasper,项目名称:askbot_php,代码行数:31,代码来源:page_question.php


注:本文中的BBCode::strip方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。