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


PHP Library::simpleTag方法代碼示例

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


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

示例1: Library

<?php

$lib = new Library();
$lib->simpleTag('echo2', function ($arg) {
    return $arg;
});
return $lib;
開發者ID:idlesign,項目名稱:dja,代碼行數:7,代碼來源:echo.php

示例2: Library

<?php

$lib = new Library();
$lib->tag('badtag', function ($parser, $token) {
    throw new RuntimeError('I am a bad tag');
});
$lib->simpleTag('badsimpletag', function () {
    throw new RuntimeError('I am a bad simpletag');
});
return $lib;
開發者ID:idlesign,項目名稱:dja,代碼行數:10,代碼來源:bad_tag.php

示例3: function

//    @register.simple_tag(takes_context=True)
//    def simple_tag_without_context_parameter(arg):
//        """Expected simple_tag_without_context_parameter __doc__"""
//        return "Expected result"
//    simple_tag_without_context_parameter.anything = "Expected simple_tag_without_context_parameter __dict__"
//
//    @register.simple_tag(takes_context=True)
//    def current_app(context):
//        return "%s" % context.current_app
//
//    @register.simple_tag(takes_context=True)
//    def use_l10n(context):
//        return "%s" % context.use_l10n
//
$lib->simpleTag('minustwo', function ($value) {
    return $value - 2;
});
$lib->simpleTag('minusone', function ($value) {
    return $value - 1;
});
//
//    @register.inclusion_tag('inclusion.html')
//    def inclusion_no_params():
//        """Expected inclusion_no_params __doc__"""
//        return {"result" : "inclusion_no_params - Expected result"}
//    inclusion_no_params.anything = "Expected inclusion_no_params __dict__"
//
//    @register.inclusion_tag(get_template('inclusion.html'))
//    def inclusion_no_params_from_template():
//        """Expected inclusion_no_params_from_template __doc__"""
//        return {"result" : "inclusion_no_params_from_template - Expected result"}
開發者ID:idlesign,項目名稱:dja,代碼行數:31,代碼來源:custom.php


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