浏览模式: 普通 | 列表
4月, 2023 | 1
https://www.bilibili.com/read/cv22684383/

chatGPT的出现不仅打破了次元的壁垒,语言也同样不是问题!(ΩДΩ)

接下来就让我们一起来体验下怎样训练chatGPT为我们写出想要的prompt,然后用Midjourney V5完美实现脑洞吧~

首先,打开chatGPT,创建一个新的聊天,输入以下一段话:
I want you to act as a prompt engineer. You will help me write prompts for an AI art generator called Midjourney.
I will provide you with short content ideas and your job is to elaborate these into full, explicit, coherent English prompts.
...

阅读全文…
<?php
$products = array("Electronics", "Accessories", "Shoes", "Toys", "Groceries");
$res = array_shift($products); //$res = ‘Electronics’ 注意返回的是删除的那个元素,而数组本身已经被改变
print_r($products);
?>

第一个值“ Electronics”被分配给“ $res”-

Array (
      [0] => Accessories
      [1] => Shoe
      [2] => Toys
      [3] => Groceries
)
1