如何以简单文本打印 return Jira API
How print the return Jira API in simple text
[description] => {color:#595959}Eresh,{color}
{color:#595959} {color}
{color:#595959}Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s{color}
{color:#595959} {color}
{color:#595959}Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s{color}
{color:#595959} {color}
return jira api 也有颜色。我想打印简单的描述。
使用此正则表达式替换花括号之间的内容
preg_replace( "/{(.*?)}/" , "" , $description);
[description] => {color:#595959}Eresh,{color}
{color:#595959} {color}
{color:#595959}Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s{color}
{color:#595959} {color}
{color:#595959}Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s{color}
{color:#595959} {color}
return jira api 也有颜色。我想打印简单的描述。
使用此正则表达式替换花括号之间的内容 preg_replace( "/{(.*?)}/" , "" , $description);