gpt4 book ai didi

php - 如何最佳地保存 mysql 字段或 php 变量中的文本?

转载 作者:行者123 更新时间:2023-11-30 23:23:49 25 4
gpt4 key购买 nike

我正在使用 php/mysql,并希望保留字段中已存在的文本,确保(仅)附加任何更改。

例如mysql中的文本字段包含“原始文本123”,而php脚本中有一个新文本“this is new text and original text”,我需要确保我没有丢失“123” "来自原文。新的存储值应该是“这是新文本和原始文本123”。

我在想我可以使用 php diff library ,但这可能有点矫枉过正,或者可能有更好的选择。

在大多数情况下,我会收到诸如“这是新文本和原始文本 123”之类的更改,因此我需要一种方法来比较传入更改末尾是否存在“原始文本 123”,意思是我可以接受改变。然而,之后的变化可能是“the is new text 2 and original text 123”。在这种情况下,我需要查看现有文本,并结合传入的文本,这将导致“这是新文本 2 这是新文本和原始文本 123”,所以我不认为我可以做一个简单的比较?

最佳答案

由于您需要自定义字符串格式,根据您的应用需求,我建议您从mysql中获取字符串,然后在您的字符串中执行手动检查,查找搜索到的字符串并根据您的需要进行格式化,然后更新 mysql 数据库中的记录。所有这些都可以在您的 php 脚本中完成。

这是一个示例,但可能会根据您的需要而有所不同:注意:此示例假设您从提供 2 个变量的网页调用 php 页面:userId 和要编写的描述。 php 页面假设在 db 上写入,其中字段 userId 是表的键,唯一要写入的字段名为 description

添加数据.php

 <?php
//first of all define a function to open db and get your data
function searchIdOnDb($id)
{
//connect to your database
mysql_connect("localhost","root","root");
//specify database
mysql_select_db("yourDBname") or die;
//Build SQL Query
$id = mysql_real_escape_string($id);
$query = "select * from yourDBtable where userId ='" . $id . "'";
$queryResult=mysql_query($query);
return $queryResult;
}
//then define a function to update your DB record
function setRecordOnDb($id, $description)
{
//the connection will be still active, then it is not needed to redo it
$id = mysql_real_escape_string($id);
$description = mysql_real_escape_string($description);
if ($description=="") $description=" ";
$query="UPDATE yourDBtable SET description='" . $description . "' WHERE userId='" . $id . "'";
$queryResult=mysql_query($query);
return $queryResult;
}

//ok, we are ready to start. first of all get your variable from the webpage
$me=$_GET["userID"];//get user id
$description=$_GET["description"];//get data to write
//if no data, exit
if ($me==null)
{
die;
}

//if no data, exit
if ($description==null)
{
die;
}

//search in db
$result=searchIdOnDb($me);
$numrows=mysql_num_rows($result);
if ($numrows == 0) { //if user is not in the db exit
die;
} else {
//the user is in the db, let's generate new description and update it
//get description from the record
$row = mysql_fetch_assoc($result);
$originalDescription= $row["description"] ;
//here compare your string description with the string originalString in order
//to obtain the newDescription string
//just for test i will append the two strings, but you can make your search inside the strings and format it according to your needs
$newDescription=$originalDescription . " " . $description;
//update record
$setRecord = setRecordOnDb($me, $newDescription);

}

if ($setRecord==FALSE ) {
//error during write, send me email
$to = "yourEmail@yourProvider.com";
$subject = "Error in file addData.php";
$body = "Variables: \n me=" . $me . " \n newDescription=" . $newDescription . " \n originalDescription=" . $originalDescription . " \n description=" . $description ;
mail($to, $subject, $body);
die;
}else{
//write ok, return ok
die("ok");
}

?>

关于php - 如何最佳地保存 mysql 字段或 php 变量中的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14304192/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com