本文整理汇总了PHP中Goteo\Library\Text::slash方法的典型用法代码示例。如果您正苦于以下问题:PHP Text::slash方法的具体用法?PHP Text::slash怎么用?PHP Text::slash使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Goteo\Library\Text
的用法示例。
在下文中一共展示了Text::slash方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: confirm
'+reward+' ok?')) {
return false;
}
}
}
if (rest > 0 && greater(amount, rest)) {
if (!confirm('<?php
echo Text::slash('invest-alert-lackdrop');
?>
'+rest+' EUR, ok?')) {
return false;
}
}
return confirm('<?php
echo Text::slash('invest-alert-investing');
?>
'+amount+' EUR');
});
/* Seteo inicial por url */
reset_amount('<?php
echo $amount;
?>
');
});
</script>
示例2: alert
var add = $('#address').val();
if (reward == 0 && (name == '' || add == '')) {
alert('<?php echo Text::slash('invest-recipient-error') ?>');
return false;
}
/* Has elegido las siguientes recompensas */
if (!confirm( reward+' <?php echo Text::slash('invest-alert-rewards') ?>')) {
return false;
}
}
}
if (rest > 0 && greater(amount, rest)) {
if (!confirm('<?php echo Text::slash('invest-alert-lackdrop') ?> '+rest+' EUR, ok?')) {
return false;
}
}
return confirm(amount+'<?php echo Text::slash('invest-alert-investing') ?>');
});
/* Seteo inicial por url */
reset_amount('<?php echo $amount ?>');
});
</script>