在 php 中将字符串作为 int 参数发送
我正在使用 fpdf 库通过 php 生成一些 pdf 文件。这一刻我迷失了,因为我无法设置背景颜色。
所以,我必须使用 SetColor(int r, int g, int b)
函数,我希望将 RGB 值作为变量发送。
使用 SetColor($my_color)
,其中 $my_color = "233, 155, 123"
不是正确的选择。 如何将颜色变量发送到 SetFillColor 函数?
I'm using fpdf library to generate some pdf files with php. At this moment I'm lost, because i can't set the background color.
So, I have to use the SetColor(int r, int g, int b)
function and I wish to send the values of RGB as a variable.
Using SetColor($my_color)
in which $my_color = "233, 155, 123"
is not the right choose.
How can I send a color variable to SetFillColor function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以对 $my_color 使用explode,然后将每个元素转换为整数。
You could use explode on $my_color and then convert each element to an integer.