當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CSRF::generate_token方法代碼示例

本文整理匯總了PHP中CSRF::generate_token方法的典型用法代碼示例。如果您正苦於以下問題:PHP CSRF::generate_token方法的具體用法?PHP CSRF::generate_token怎麽用?PHP CSRF::generate_token使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CSRF的用法示例。


在下文中一共展示了CSRF::generate_token方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: generate_hidden_field

 public static function generate_hidden_field()
 {
     return '<input type="hidden" name="security_token" id="security_token" value="' . CSRF::generate_token() . '" />';
 }
開發者ID:ralexandru,項目名稱:commando,代碼行數:4,代碼來源:CSRF.php

示例2:

</a>
			                	</li>
	                		</ul>
	                		<ul class="navbar-form nav pull-right">
	                			<?php 
if ($recipe->recipe_version !== $head->recipe_version) {
    ?>
	                				<li>
	                					<a href="/actions/edit_recipe_head.php?id=<?php 
    echo $recipe->id;
    ?>
&version=<?php 
    echo $recipe->recipe_version;
    ?>
&security_token=<?php 
    echo CSRF::generate_token();
    ?>
" rel="tooltip" class="tip" data-placement="top" data-original-title="Promote this version to head."><i class="icon-chevron-up"></i> Make Head</a>
	                				</li>
	                				<li class="divider-vertical"></li>
	                			<?php 
}
?>
	                			<li>
	                				<select name="versions" id="recipe-versions" class="span2" data-placeholder="">
										<?php 
foreach ($recipe_versions as $recipe_version) {
    ?>
											<option value="
											
												<?php 
開發者ID:ralexandru,項目名稱:commando,代碼行數:31,代碼來源:view-recipe.php

示例3: generate_get_parameter

 public static function generate_get_parameter()
 {
     $token = CSRF::generate_token();
     return 'security_token_' . CSRF::$count . '=' . $token;
 }
開發者ID:tsing,項目名稱:commando,代碼行數:5,代碼來源:CSRF.php


注:本文中的CSRF::generate_token方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。