gpt4 book ai didi

typo3 - 通过 TypoScript 生成随机字符串

转载 作者:行者123 更新时间:2023-12-04 22:22:36 29 4
gpt4 key购买 nike

是否可以通过 TypoScript 自动生成数字和字母的混合字符串,例如12A54或类似的东西?

最佳答案

与 php 包含脚本相比,我更喜欢 userFunc。例如,您可以将参数传递给用户函数。

排版:

includeLibs.generateInvoiceNo= fileadmin/scripts/generateInvoiceNo.php
temp.invoiceNo = USER
temp.invoiceNo {
userFunc =user_generateInvoiceNo->main
}

PHP:
fileadmin/scripts/generateInvoiceNo.php
<?
class user_generateInvoiceNo {
var $cObj;// The backReference to the mother cObj object set at call time
/**
* Call it from a USER cObject with 'userFunc = user_generateInvoiceNo->main'
*/
function main($content,$conf){
$length = 6;
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
$number=substr(str_shuffle($chars),0,$length);
return $number;
}
}
?>

学分:
  • This php script
  • TYPO3 Wizard on userFunc
  • 关于typo3 - 通过 TypoScript 生成随机字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12972853/

    29 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com