我有一个您传入参数的 Phing 项目。我想对这个参数执行简单的字符串操作,例如 strtolower() 或 ucwords() 等。有什么想法可以解决这个问题吗?

最佳答案

如何使用 PhpEvaLTask:

<project name="StringTest" default="all" basedir=".">
<target name="stringtest"  description="test">
    <php expression="strtolower(${param})" returnProperty="paramToLower"/>
    <php expression="ucwords(${param})" returnProperty="paramUcwords"/>
    <echo>To lower ${paramToLower}</echo>
    <echo>UcWords ${paramUcwords}</echo>
</target>

运行它:
phing -Dparam=BLAH stringtest

产量:
Buildfile: /export/users/marcelog/build.xml

字符串测试 > 字符串测试:
  [php] Evaluating PHP expression: strtolower(BLAH)
  [php] Evaluating PHP expression: ucwords(BLAH)
 [echo] To lower blah
 [echo] UcWords BLAH

build 完成

关于Phing 字符串操作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10432771/

10-11 02:44